Database Installer.
This commit is contained in:
24
trunk/dist/db_installer/sql/game/clanentry.sql
vendored
Normal file
24
trunk/dist/db_installer/sql/game/clanentry.sql
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
DROP TABLE IF EXISTS `pledge_applicant`;
|
||||
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;
|
||||
|
||||
DROP TABLE IF EXISTS `pledge_recruit`;
|
||||
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;
|
||||
|
||||
DROP TABLE IF EXISTS `pledge_waiting_list`;
|
||||
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