mirror of
https://github.com/sebastian-heinz/Arrowgene.DragonsDogmaOnline
synced 2026-08-03 11:12:41 -04:00
9 lines
No EOL
392 B
SQL
9 lines
No EOL
392 B
SQL
CREATE TABLE ddon_crests (
|
|
"character_common_id" INTEGER NOT NULL,
|
|
"item_uid" VARCHAR(8) NOT NULL,
|
|
"slot" INTEGER NOT NULL,
|
|
"crest_id" INTEGER NOT NULL,
|
|
"crest_amount" INTEGER NOT NULL,
|
|
FOREIGN KEY("item_uid") REFERENCES "ddon_storage_item"("item_uid") ON DELETE CASCADE,
|
|
FOREIGN KEY("character_common_id") REFERENCES "ddon_character_common"("character_common_id") ON DELETE CASCADE
|
|
); |