mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
should init schema on collection creation
This commit is contained in:
parent
aeb38ab65d
commit
8ede57b024
1 changed files with 2 additions and 2 deletions
|
@ -131,8 +131,8 @@ create table if not exists graves (
|
|||
);
|
||||
|
||||
insert or ignore into col
|
||||
values(1,0,0,0,%(v)s,0,0,0,'','{}','','','{}');
|
||||
""" % ({'v':SCHEMA_VERSION}))
|
||||
values(1,0,0,%(s)s,%(v)s,0,0,0,'','{}','','','{}');
|
||||
""" % ({'v':SCHEMA_VERSION, 's':intTime(1000)}))
|
||||
if setColConf:
|
||||
_addColVars(db, *_getColVars(db))
|
||||
|
||||
|
|
Loading…
Reference in a new issue