Marked Erika Korti Studio as showcased.

This commit is contained in:
DebaucheryLibrarian
2024-09-09 04:34:28 +02:00
parent efab316343
commit fd58c12fee
3 changed files with 5 additions and 9 deletions

View File

@@ -11,24 +11,18 @@ exports.up = async (knex) => {
.references('id')
.inTable('users');
table.json('data');
table.json('base');
table.json('deltas');
table.text('comment');
table.boolean('approved')
.notNullable()
.defaultTo(false);
table.datetime('applied_at');
table.integer('approved_by')
.references('id')
.inTable('users');
table.boolean('applied')
.notNullable()
.defaultTo(false);
table.datetime('applied_at');
table.text('error');
table.datetime('created_at')
.notNullable()