diff options
author | Shido <the.keikun@gmail.com> | 2014-05-16 21:42:25 +0800 |
---|---|---|
committer | Shido <the.keikun@gmail.com> | 2014-05-17 01:13:23 +0800 |
commit | 5f5380e8d5fa2e6042813e35101cb33b656e3972 (patch) | |
tree | 76612807cd798428d6b199a5de02f42e518fdfab /sql-files | |
parent | bc1d286cc71a7ae82d9639f4a832970a287c0d71 (diff) | |
download | hercules-5f5380e8d5fa2e6042813e35101cb33b656e3972.tar.gz hercules-5f5380e8d5fa2e6042813e35101cb33b656e3972.tar.bz2 hercules-5f5380e8d5fa2e6042813e35101cb33b656e3972.tar.xz hercules-5f5380e8d5fa2e6042813e35101cb33b656e3972.zip |
Renamed incuvate of Pet System.
Diffstat (limited to 'sql-files')
-rw-r--r-- | sql-files/main.sql | 3 | ||||
-rw-r--r-- | sql-files/upgrades/2014-05-17--00-06.sql | 3 | ||||
-rw-r--r-- | sql-files/upgrades/index.txt | 1 |
3 files changed, 6 insertions, 1 deletions
diff --git a/sql-files/main.sql b/sql-files/main.sql index 25045226a..9c2c1ca43 100644 --- a/sql-files/main.sql +++ b/sql-files/main.sql @@ -577,7 +577,7 @@ CREATE TABLE IF NOT EXISTS `pet` ( `intimate` smallint(9) unsigned NOT NULL default '0', `hungry` smallint(9) unsigned NOT NULL default '0', `rename_flag` tinyint(4) unsigned NOT NULL default '0', - `incuvate` int(11) unsigned NOT NULL default '0', + `incubate` int(11) unsigned NOT NULL default '0', PRIMARY KEY (`pet_id`) ) ENGINE=MyISAM; @@ -668,6 +668,7 @@ INSERT INTO `sql_updates` (`timestamp`) VALUES (1392832626); -- 2014-02-19--17-5 INSERT INTO `sql_updates` (`timestamp`) VALUES (1395789302); -- 2014-03-25--23-57.sql INSERT INTO `sql_updates` (`timestamp`) VALUES (1396893866); -- 2014-04-07--22-04.sql INSERT INTO `sql_updates` (`timestamp`) VALUES (1398477600); -- 2014-04-26--10-00.sql +INSERT INTO `sql_updates` (`timestamp`) VALUES (1400256139); -- 2014-05-17--00-06.sql -- -- Table structure for table `sstatus` diff --git a/sql-files/upgrades/2014-05-17--00-06.sql b/sql-files/upgrades/2014-05-17--00-06.sql new file mode 100644 index 000000000..8f19c859f --- /dev/null +++ b/sql-files/upgrades/2014-05-17--00-06.sql @@ -0,0 +1,3 @@ +#1400256139 +RENAME TABLE `incuvate` TO `incubate` +INSERT INTO `sql_updates` (`timestamp`) VALUES (1400256139); diff --git a/sql-files/upgrades/index.txt b/sql-files/upgrades/index.txt index 2383c0775..ab8ee772d 100644 --- a/sql-files/upgrades/index.txt +++ b/sql-files/upgrades/index.txt @@ -22,3 +22,4 @@ 2014-03-25--23-57.sql 2014-04-07--22-04.sql 2014-04-26--10-00.sql +2014-05-17--00-06.sql |