Files
owlibou_tavern/database/main/special_ability.sql

15 lines
288 B
SQL

create table special_ability
(
id INTEGER
primary key,
optolith_key TEXT not null
unique,
name TEXT not null,
type_code TEXT
references sa_type
on update cascade,
ap_kosten INTEGER,
beschreibung TEXT
);