Files
computer-science-flash-cards/data/handle_old_schema.sql
2021-05-31 22:12:44 +07:00

4 lines
100 B
SQL

create table if not exists tags (
id integer primary key autoincrement,
tagName text not null
);