diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-04-28 19:10:42 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-04-28 19:10:42 -0300 |
commit | bca771a1fae25ed2cdfb870963ed5e43d9519c06 (patch) | |
tree | 25a01d45e6090da42dfb8a4c118b1820b7d14771 /sql-files/main.sql | |
parent | 00831c5057adb48063626a5855bf3c45d0d2dd0c (diff) | |
download | serverdata-bca771a1fae25ed2cdfb870963ed5e43d9519c06.tar.gz serverdata-bca771a1fae25ed2cdfb870963ed5e43d9519c06.tar.bz2 serverdata-bca771a1fae25ed2cdfb870963ed5e43d9519c06.tar.xz serverdata-bca771a1fae25ed2cdfb870963ed5e43d9519c06.zip |
Merge evol-server-data with TMW2.
Unexpected bugs may show up, beware.
Conversion scripts were NOT used
Diffstat (limited to 'sql-files/main.sql')
-rw-r--r-- | sql-files/main.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql-files/main.sql b/sql-files/main.sql index 5546c0271..2e51d6a12 100644 --- a/sql-files/main.sql +++ b/sql-files/main.sql @@ -219,6 +219,8 @@ CREATE TABLE IF NOT EXISTS `char` ( `uniqueitem_counter` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0', `sex` ENUM('M','F','U') NOT NULL DEFAULT 'U', `hotkey_rowshift` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0', + `attendance_count` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0', + `attendance_timer` BIGINT(20) NULL DEFAULT '0', PRIMARY KEY (`char_id`), UNIQUE KEY `name_key` (`name`), KEY `account_id` (`account_id`), @@ -890,6 +892,7 @@ INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1496588640); -- 2017-06-0 INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1496588700); -- 2017-06-04--15-05.sql INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1509835214); -- 2017-11-04--10-39.sql INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1519671456); -- 2018-02-26--15-57.sql +INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1520654809); -- 2018-03-10--04-06.sql -- -- Table structure for table `storage` -- |