Alternative database installer.
This commit is contained in:
10
trunk/dist/tools/sql/server/cursed_weapons.sql
vendored
Normal file
10
trunk/dist/tools/sql/server/cursed_weapons.sql
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
CREATE TABLE IF NOT EXISTS `cursed_weapons` (
|
||||
`itemId` INT,
|
||||
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||
`playerKarma` INT DEFAULT 0,
|
||||
`playerPkKills` INT DEFAULT 0,
|
||||
`nbKills` INT DEFAULT 0,
|
||||
`endTime` bigint(13) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`itemId`),
|
||||
KEY `charId` (`charId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user