diff options
author | Mysterious <mysteriousragnarok@hotmail.com> | 2013-02-14 18:56:08 -0800 |
---|---|---|
committer | Mysterious <mysteriousragnarok@hotmail.com> | 2013-02-14 18:56:08 -0800 |
commit | 7fa99e3524cb9cafdc797bcfc779ae5e0f730c8e (patch) | |
tree | 3a6cb20957b1486d92f7f017e0e6048951112d87 /sql-files/main.sql | |
parent | 52e8c428bfc64a2285710256496331bfff19b651 (diff) | |
parent | 74c31098137aae3e0bfc962e4685a7050409df78 (diff) | |
download | hercules-7fa99e3524cb9cafdc797bcfc779ae5e0f730c8e.tar.gz hercules-7fa99e3524cb9cafdc797bcfc779ae5e0f730c8e.tar.bz2 hercules-7fa99e3524cb9cafdc797bcfc779ae5e0f730c8e.tar.xz hercules-7fa99e3524cb9cafdc797bcfc779ae5e0f730c8e.zip |
Merge pull request #4 from HerculesWS/master
Merging Hercules Changes
Diffstat (limited to 'sql-files/main.sql')
-rw-r--r-- | sql-files/main.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sql-files/main.sql b/sql-files/main.sql index e69279710..fbdf40dde 100644 --- a/sql-files/main.sql +++ b/sql-files/main.sql @@ -618,6 +618,7 @@ CREATE TABLE IF NOT EXISTS `skill` ( `char_id` int(11) unsigned NOT NULL default '0', `id` smallint(11) unsigned NOT NULL default '0', `lv` tinyint(4) unsigned NOT NULL default '0', + `flag` TINYINT(1) UNSIGNED NOT NULL default 0, PRIMARY KEY (`char_id`,`id`) ) ENGINE=MyISAM; @@ -633,6 +634,18 @@ CREATE TABLE IF NOT EXISTS `skill_homunculus` ( ) ENGINE=MyISAM; -- +-- Table structure for table `sql_updates` +-- + +CREATE TABLE IF NOT EXISTS `sql_updates` ( + `timestamp` int(11) unsigned NOT NULL, + `ignored` enum('Yes','No') NOT NULL DEFAULT 'No' +) ENGINE=MyISAM; + +-- Existent updates to enter +INSERT INTO `sql_updates` (`timestamp`) VALUES (1360858500); + +-- -- Table structure for table `sstatus` -- |