Refactored tools\sql\server to tools\sql\game.
This commit is contained in:
21
trunk/dist/tools/sql/game/clanentry.sql
vendored
Normal file
21
trunk/dist/tools/sql/game/clanentry.sql
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
CREATE TABLE IF NOT EXISTS `pledge_applicant` (
|
||||
`charId` int(10) NOT NULL,
|
||||
`clanId` int(10) NOT NULL,
|
||||
`karma` tinyint(1) NOT NULL,
|
||||
`message` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
|
||||
PRIMARY KEY (`charId`,`clanId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `pledge_recruit` (
|
||||
`clan_id` int(10) NOT NULL,
|
||||
`karma` tinyint(1) NOT NULL,
|
||||
`information` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
|
||||
`detailed_information` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
|
||||
PRIMARY KEY (`clan_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `pledge_waiting_list` (
|
||||
`char_id` int(10) NOT NULL,
|
||||
`karma` tinyint(1) NOT NULL,
|
||||
PRIMARY KEY (`char_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
Reference in New Issue
Block a user