summaryrefslogtreecommitdiff
path: root/sql-files/main.sql
diff options
context:
space:
mode:
authorMysterious <mysteriousragnarok@hotmail.com>2013-02-14 18:56:08 -0800
committerMysterious <mysteriousragnarok@hotmail.com>2013-02-14 18:56:08 -0800
commit7fa99e3524cb9cafdc797bcfc779ae5e0f730c8e (patch)
tree3a6cb20957b1486d92f7f017e0e6048951112d87 /sql-files/main.sql
parent52e8c428bfc64a2285710256496331bfff19b651 (diff)
parent74c31098137aae3e0bfc962e4685a7050409df78 (diff)
downloadhercules-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.sql13
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`
--