Files
computer-science-flash-cards/data/schema.sql
2016-06-30 19:03:09 -07:00

9 lines
218 B
SQL

drop table if exists cards;
create table cards (
id integer primary key autoincrement,
type tinyint not null, /* 1 for vocab, 2 for code */
front text not null,
back text not null,
known boolean default 0
);