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