Database Installer.
This commit is contained in:
6
trunk/dist/db_installer/sql/game/global_variables.sql
vendored
Normal file
6
trunk/dist/db_installer/sql/game/global_variables.sql
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
DROP TABLE IF EXISTS `global_variables`;
|
||||
CREATE TABLE IF NOT EXISTS `global_variables` (
|
||||
`var` VARCHAR(20) NOT NULL DEFAULT '',
|
||||
`value` VARCHAR(255) ,
|
||||
PRIMARY KEY (`var`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user