Add sql to create tag table if not exists

This commit is contained in:
duongban
2021-05-31 22:12:44 +07:00
parent c5ba483449
commit 8d86d496ae

View File

@@ -0,0 +1,4 @@
create table if not exists tags (
id integer primary key autoincrement,
tagName text not null
);