Database Installer.
This commit is contained in:
7
trunk/dist/db_installer/sql/game/item_variables.sql
vendored
Normal file
7
trunk/dist/db_installer/sql/game/item_variables.sql
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
DROP TABLE IF EXISTS `item_variables`;
|
||||
CREATE TABLE IF NOT EXISTS `item_variables` (
|
||||
`id` int(10) UNSIGNED NOT NULL,
|
||||
`var` varchar(255) NOT NULL,
|
||||
`val` text NOT NULL,
|
||||
KEY `charId` (`id`)
|
||||
);
|
Reference in New Issue
Block a user