mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 17:51:28 +00:00
6 lines
223 B
SQL
6 lines
223 B
SQL
CREATE TABLE botstances (
|
|
BotID int(10) unsigned NOT NULL default '0',
|
|
StanceID tinyint unsigned NOT NULL default '0',
|
|
PRIMARY KEY (BotID),
|
|
CONSTRAINT FK_botstances_1 FOREIGN KEY (BotID) REFERENCES bots (BotID)
|
|
); |