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