Merged with released L2J-Unity files.
This commit is contained in:
20
trunk/dist/db_installer/sql/game/clan_wars.sql
vendored
20
trunk/dist/db_installer/sql/game/clan_wars.sql
vendored
@@ -1,9 +1,13 @@
|
||||
DROP TABLE IF EXISTS `clan_wars`;
|
||||
CREATE TABLE IF NOT EXISTS `clan_wars` (
|
||||
`clan1` varchar(35) NOT NULL DEFAULT '',
|
||||
`clan2` varchar(35) NOT NULL DEFAULT '',
|
||||
`wantspeace1` decimal(1,0) NOT NULL DEFAULT '0',
|
||||
`wantspeace2` decimal(1,0) NOT NULL DEFAULT '0',
|
||||
KEY `clan1` (`clan1`),
|
||||
KEY `clan2` (`clan2`)
|
||||
DROP TABLE IF EXISTS `clan_wars`;
|
||||
CREATE TABLE IF NOT EXISTS `clan_wars` (
|
||||
`clan1` varchar(35) NOT NULL DEFAULT '',
|
||||
`clan2` varchar(35) NOT NULL DEFAULT '',
|
||||
`clan1Kill` int(11) NOT NULL DEFAULT 0,
|
||||
`clan2Kill` int(11) NOT NULL DEFAULT 0,
|
||||
`winnerClan` varchar(35) NOT NULL DEFAULT '0',
|
||||
`startTime` bigint(13) NOT NULL DEFAULT 0,
|
||||
`endTime` bigint(13) NOT NULL DEFAULT 0,
|
||||
`state` tinyint(4) NOT NULL DEFAULT 0,
|
||||
KEY `clan1` (`clan1`),
|
||||
KEY `clan2` (`clan2`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user