14 lines
653 B
SQL
14 lines
653 B
SQL
DROP TABLE IF EXISTS variables;
|
|
CREATE TABLE variables (
|
|
variable_name TEXT NOT NULL DEFAULT '' PRIMARY KEY,
|
|
variable_value TEXT NOT NULL DEFAULT '',
|
|
comment TEXT
|
|
);
|
|
|
|
INSERT INTO variables VALUES
|
|
('default_ruleset_id','1','Default ruleset'),
|
|
('gambling_current_jackpot','128000','Current Gigglegibber Gambling Game Jackpot'),
|
|
('gambling_winning_numbers','231205182236','Current Gigglegibber Gambling Game winning numbers'),
|
|
('gametime','3/22/4064 11:38',NULL),
|
|
('motd','Welcome to the NEW Content Server. Please visit https://www.eq2emu.com or https://www.zeklabs.com for more info about things || Please use /BUG for bug reports.','Motd.');
|