9 lines
105 B
SQL
9 lines
105 B
SQL
create table tradition
|
|
(
|
|
id INTEGER
|
|
primary key,
|
|
name TEXT not null
|
|
unique
|
|
);
|
|
|