4 lines
100 B
SQL
4 lines
100 B
SQL
create table if not exists tags (
|
|
id integer primary key autoincrement,
|
|
tagName text not null
|
|
); |