Files
owlibou_tavern/database/main/tradition.sql

9 lines
105 B
SQL

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