mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
5 lines
190 B
MySQL
5 lines
190 B
MySQL
|
CREATE TABLE IF NOT EXISTS "inventory" (
|
||
|
character_id INTEGER PRIMARY KEY NOT NULL,
|
||
|
items TEXT NOT NULL,
|
||
|
FOREIGN KEY(character_id) REFERENCES "character"(id) ON DELETE CASCADE
|
||
|
);
|