fix reclaimning

This commit is contained in:
ntr
2019-04-29 12:27:08 +10:00
parent 03aae7e3cd
commit 618f366796
7 changed files with 33 additions and 28 deletions
+2 -2
View File
@@ -14,8 +14,8 @@ exports.up = async knex => {
table.timestamps(true, true);
table.binary('data').notNullable();
table.boolean('open')
.defaultTo(true)
table.boolean('finished')
.defaultTo(false)
.notNullable()
.index();
});