Fixed profile location interpolation. Generalizing ethnicity, hair color and eye color.

This commit is contained in:
2020-05-19 01:10:32 +02:00
parent 4826ae8571
commit 0c4628677f
16 changed files with 1976 additions and 1862 deletions

View File

@@ -14,6 +14,7 @@ exports.up = knex => Promise.resolve()
table.integer('code', 3);
table.string('nationality');
table.integer('priority', 2)
.defaultTo(0);
}))
@@ -344,6 +345,8 @@ exports.up = knex => Promise.resolve()
.inTable('sites');
table.unique(['actor_id', 'network_id', 'site_id']);
table.integer('priority', 4)
.defaultTo(1);
table.string('real_name');