Move extraneous files to contrib/, added region_storage_update_20110325.sql to assembly.

This commit is contained in:
sk89q 2012-10-19 20:12:24 -07:00
parent d21c226183
commit 7cd67281bc
4 changed files with 26 additions and 25 deletions

View File

@ -1,24 +1,24 @@
-- Blacklist table for MySQL. -- Blacklist table for MySQL.
-- You must still configure WorldGuard to use your database. -- You must still configure WorldGuard to use your database.
-- If you do not plan on using a database for logging blacklist events, -- If you do not plan on using a database for logging blacklist events,
-- you do not need to do anything with this file. -- you do not need to do anything with this file.
CREATE TABLE `blacklist_events` ( CREATE TABLE `blacklist_events` (
`id` int(11) NOT NULL AUTO_INCREMENT, `id` int(11) NOT NULL AUTO_INCREMENT,
`event` varchar(25) NOT NULL, `event` varchar(25) NOT NULL,
`world` varchar(32) NOT NULL, `world` varchar(32) NOT NULL,
`player` varchar(16) NOT NULL, `player` varchar(16) NOT NULL,
`x` int(11) NOT NULL, `x` int(11) NOT NULL,
`y` int(11) NOT NULL, `y` int(11) NOT NULL,
`z` int(11) NOT NULL, `z` int(11) NOT NULL,
`item` int(11) NOT NULL, `item` int(11) NOT NULL,
`time` int(11) NOT NULL, `time` int(11) NOT NULL,
`comment` varchar(255) NULL, `comment` varchar(255) NULL,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
); );
-- Required update if you have an older version of the table: -- Required update if you have an older version of the table:
ALTER TABLE `blacklist_events` ADD `comment` VARCHAR( 255 ) NULL ALTER TABLE `blacklist_events` ADD `comment` VARCHAR( 255 ) NULL
ALTER TABLE `blacklist_events` ADD `world` VARCHAR( 32 ) NOT NULL ALTER TABLE `blacklist_events` ADD `world` VARCHAR( 32 ) NOT NULL

View File

@ -28,8 +28,9 @@
<include>LICENSE.txt</include> <include>LICENSE.txt</include>
<include>NOTICE.txt</include> <include>NOTICE.txt</include>
<include>CHANGELOG.txt</include> <include>CHANGELOG.txt</include>
<include>blacklist_table.sql</include> <include>contrib/blacklist_table.sql</include>
<include>region_storage.sql</include> <include>contrib/region_storage.sql</include>
<include>contrib/region_storage_update_20110325.sql</include>
</includes> </includes>
</fileSet> </fileSet>
</fileSets> </fileSets>