Changed default import_status value on cc_files table to 1 (pending)

This commit is contained in:
drigato 2014-04-01 11:28:33 -04:00
parent 9eda78f8f9
commit 70228a675e
4 changed files with 6 additions and 6 deletions

View file

@ -36,7 +36,7 @@ CREATE TABLE "cc_files"
"ftype" VARCHAR(128) default '' NOT NULL,
"directory" INTEGER,
"filepath" TEXT default '',
"import_status" INTEGER default 0 NOT NULL,
"import_status" INTEGER default 1 NOT NULL,
"currentlyaccessing" INTEGER default 0 NOT NULL,
"editedby" INTEGER,
"mtime" TIMESTAMP(6),