mirror of
https://github.com/ankitects/anki.git
synced 2025-12-10 21:36:55 -05:00
10 lines
No EOL
207 B
SQL
10 lines
No EOL
207 B
SQL
create table deck_config (
|
|
id integer primary key not null,
|
|
name text not null collate unicase,
|
|
mtime_secs integer not null,
|
|
usn integer not null,
|
|
config blob not null
|
|
);
|
|
update col
|
|
set
|
|
ver = 12; |