Added oil tag. Removed Fame Digital from profile config.

This commit is contained in:
2020-05-18 04:28:38 +02:00
parent 003e07491d
commit 4826ae8571
17 changed files with 1865 additions and 1845 deletions

View File

@@ -264,7 +264,10 @@ exports.up = knex => Promise.resolve()
table.string('name')
.notNullable();
table.string('slug', 32);
table.string('slug', 32)
.notNullable();
table.string('real_name');
table.integer('network_id', 12)
.references('id')
@@ -342,6 +345,8 @@ exports.up = knex => Promise.resolve()
table.unique(['actor_id', 'network_id', 'site_id']);
table.string('real_name');
table.date('date_of_birth');
table.date('date_of_death');