Add tags table schema
This commit is contained in:
@@ -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
|
||||||
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user