Files
2026-06-15 17:06:02 +03:00

9 lines
193 B
SQL

create table card_set
(
id INTEGER
primary key autoincrement,
name TEXT not null,
forward TEXT not null,
backward TEXT not null,
filter TEXT not null
);