Added delete stash icons and dialog.

This commit is contained in:
DebaucheryLibrarian
2021-03-20 23:03:13 +01:00
parent 07643870cd
commit eee47111a6
14 changed files with 204 additions and 33 deletions

View File

@@ -1067,6 +1067,10 @@ exports.up = knex => Promise.resolve()
.notNullable()
.defaultTo(false);
table.boolean('deletable')
.notNullable()
.defaultTo(true);
table.datetime('created_at')
.notNullable()
.defaultTo(knex.fn.now());