Added profile flush.

This commit is contained in:
DebaucheryLibrarian
2020-12-30 02:23:43 +01:00
parent cdc963c42c
commit af67d733ad
11 changed files with 123 additions and 23 deletions

View File

@@ -240,8 +240,6 @@ exports.up = knex => Promise.resolve()
table.text('slug', 32)
.notNullable();
table.text('real_name');
table.integer('entity_id', 12)
.references('id')
.inTable('entities');
@@ -252,6 +250,8 @@ exports.up = knex => Promise.resolve()
.references('id')
.inTable('actors');
table.text('real_name');
table.date('date_of_birth');
table.date('date_of_death');
table.integer('age', 3);