10 lines
159 B
SQL
10 lines
159 B
SQL
create table creature_attack_property
|
|
(
|
|
id INTEGER
|
|
primary key,
|
|
name TEXT not null
|
|
unique,
|
|
beschreibung TEXT
|
|
);
|
|
|