Add tags table schema

This commit is contained in:
duongban
2021-05-23 18:25:31 +07:00
parent 91aa42d317
commit ed894cb7de

View File

@@ -6,3 +6,8 @@ create table cards (
back text not null, back text not null,
known boolean default 0 known boolean default 0
); );
create table tags (
id integer primary key autoincrement,
tagName text not null
);