diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-09-06 19:58:51 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-09-06 19:58:51 +0000 |
commit | e3014f7b20b5df2843e3448c5327dda2641ddbdc (patch) | |
tree | 7b051a2217aeb27a77f35f2a632034df12477b87 /sql-files/upgrade_svn12559.sql | |
parent | bd62cbc13d98a977008f42ea6583a33c99516c6b (diff) | |
download | hercules-e3014f7b20b5df2843e3448c5327dda2641ddbdc.tar.gz hercules-e3014f7b20b5df2843e3448c5327dda2641ddbdc.tar.bz2 hercules-e3014f7b20b5df2843e3448c5327dda2641ddbdc.tar.xz hercules-e3014f7b20b5df2843e3448c5327dda2641ddbdc.zip |
sql-files folder redesign as discussed with other developers, all upgrade files prior to rathena were removed (if you need them you can use the trac or download a earlier version of the folder).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16750 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'sql-files/upgrade_svn12559.sql')
-rw-r--r-- | sql-files/upgrade_svn12559.sql | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/sql-files/upgrade_svn12559.sql b/sql-files/upgrade_svn12559.sql deleted file mode 100644 index 302493e1b..000000000 --- a/sql-files/upgrade_svn12559.sql +++ /dev/null @@ -1,24 +0,0 @@ --- --- Table structure for table `quest` --- - -DROP TABLE IF EXISTS `quest`; -CREATE TABLE `quest` ( - `char_id` int(11) unsigned NOT NULL default '0', - `quest_id` int(10) unsigned NOT NULL, - `state` enum('1','0') NOT NULL default '0', - PRIMARY KEY USING BTREE (`char_id`,`quest_id`) -) ENGINE=MyISAM; - --- --- Table structure for table `quest_mob` --- - -DROP TABLE IF EXISTS `quest_objective`; -CREATE TABLE `quest_objective` ( - `quest_id` int(11) unsigned NOT NULL, - `count` mediumint(8) unsigned NOT NULL default '0', - `name` varchar(255) NOT NULL default '', - `num` tinyint(3) unsigned NOT NULL, - PRIMARY KEY USING BTREE (`quest_id`,`num`) -) ENGINE=MyISAM; |