Files
owlibou_tavern/database/main/weapon_property.sql

10 lines
150 B
SQL

create table weapon_property
(
id INTEGER
primary key,
name TEXT not null
unique,
beschreibung TEXT
);