Update schema_single.sql

drop and recreate _s table
0.4
shivajiva101 2019-01-09 00:49:53 +00:00 committed by GitHub
parent c123013a68
commit d80911ed16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -28,6 +28,10 @@ DROP TABLE auth_YZ;
DROP TABLE auth_09;
DROP TABLE auth_MISC;
DROP TABLE _s;
CREATE TABLE _s (import BOOLEAN, db_version VARCHAR (6));
INSERT INTO _s VALUES ('true', '1.1');
COMMIT;
PRAGMA foreign_keys=on;