summaryrefslogtreecommitdiff
path: root/sql-files/upgrade_svn3273.sql
diff options
context:
space:
mode:
authorDracoRPG <DracoRPG@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-04-02 23:31:51 +0000
committerDracoRPG <DracoRPG@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-04-02 23:31:51 +0000
commit4b83ab5aa37c6c61ae7bfe1e92d20894d00844d4 (patch)
tree8bd834a15368ca23f3d380121ce2b4d69828b23c /sql-files/upgrade_svn3273.sql
parent05cb73e9caeddfb27729ad1d1652bb7bbfeba27e (diff)
downloadhercules-4b83ab5aa37c6c61ae7bfe1e92d20894d00844d4.tar.gz
hercules-4b83ab5aa37c6c61ae7bfe1e92d20894d00844d4.tar.bz2
hercules-4b83ab5aa37c6c61ae7bfe1e92d20894d00844d4.tar.xz
hercules-4b83ab5aa37c6c61ae7bfe1e92d20894d00844d4.zip
Spring cleaning in sql-files/
Officialized a very small bit of the wedding NPC git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10133 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'sql-files/upgrade_svn3273.sql')
-rw-r--r--sql-files/upgrade_svn3273.sql12
1 files changed, 0 insertions, 12 deletions
diff --git a/sql-files/upgrade_svn3273.sql b/sql-files/upgrade_svn3273.sql
deleted file mode 100644
index c9e88d761..000000000
--- a/sql-files/upgrade_svn3273.sql
+++ /dev/null
@@ -1,12 +0,0 @@
-CREATE TABLE `sc_data` (
- `account_id` int(11) unsigned NOT NULL,
- `char_id` int(11) unsigned NOT NULL,
- `type` smallint(11) unsigned NOT NULL,
- `tick` int(11) NOT NULL,
- `val1` int(11) NOT NULL default '0',
- `val2` int(11) NOT NULL default '0',
- `val3` int(11) NOT NULL default '0',
- `val4` int(11) NOT NULL default '0',
- CONSTRAINT `scdata_ibfk_1` FOREIGN KEY (`account_id`) REFERENCES `login` (`account_id`) ON DELETE CASCADE,
- CONSTRAINT `scdata_ibfk_2` FOREIGN KEY (`char_id`) REFERENCES `char` (`char_id`) ON DELETE CASCADE
-) TYPE=InnoDB;