12 lines
241 B
SQL
12 lines
241 B
SQL
create table ammunition
|
|
(
|
|
id INTEGER
|
|
primary key,
|
|
item_id INTEGER not null
|
|
unique
|
|
references item
|
|
on delete cascade,
|
|
passend_fuer_fk_waffe_typ TEXT
|
|
);
|
|
|