eqemu-server/utils/sql/svn/2107_required_bot_stances.sql
2013-02-16 16:14:39 -08:00

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