mirror of
https://github.com/yoncodes/BD2PS.git
synced 2026-08-04 22:02:15 +02:00
7 lines
328 B
SQL
7 lines
328 B
SQL
CREATE TABLE IF NOT EXISTS HuntingGroundMonster (
|
|
"HuntingGroundIndex" INTEGER NOT NULL,
|
|
"MonsterIndex" INTEGER NOT NULL,
|
|
FOREIGN KEY("HuntingGroundIndex") REFERENCES HuntingGroundInfo("Index") ON DELETE CASCADE,
|
|
FOREIGN KEY("MonsterIndex") REFERENCES MonsterInfo("Index") ON DELETE CASCADE
|
|
);
|