Database Installer.
This commit is contained in:
9
trunk/dist/db_installer/sql/game/clan_subpledges.sql
vendored
Normal file
9
trunk/dist/db_installer/sql/game/clan_subpledges.sql
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
DROP TABLE IF EXISTS `clan_subpledges`;
|
||||
CREATE TABLE IF NOT EXISTS `clan_subpledges` (
|
||||
`clan_id` INT NOT NULL DEFAULT '0',
|
||||
`sub_pledge_id` INT NOT NULL DEFAULT '0',
|
||||
`name` varchar(45),
|
||||
`leader_id` INT NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`clan_id`,`sub_pledge_id`),
|
||||
KEY `leader_id` (`leader_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user