l2j_mobius/trunk/dist/db_installer/sql/game/item_variables.sql
2015-08-30 17:39:57 +00:00

7 lines
197 B
SQL

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`)
);