mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 17:51:28 +00:00
7 lines
266 B
SQL
7 lines
266 B
SQL
CREATE TABLE bottimers (
|
|
BotID int(10) unsigned NOT NULL default '0',
|
|
TimerID int(10) unsigned NOT NULL default '0',
|
|
Value int(10) unsigned NOT NULL default '0',
|
|
PRIMARY KEY (BotID),
|
|
CONSTRAINT FK_bottimers_1 FOREIGN KEY (BotID) REFERENCES bots (BotID)
|
|
) |