forked from DebaucheryLibrarian/traxxx
Added basic actor and network overview. Added DDF Network actor scraper. Various bug fixes and layout improvements.
This commit is contained in:
@@ -4,10 +4,18 @@ exports.up = knex => Promise.resolve()
|
||||
.unique()
|
||||
.primary();
|
||||
|
||||
table.string('alpha3', 3)
|
||||
.unique();
|
||||
|
||||
table.string('name')
|
||||
.notNullable();
|
||||
|
||||
table.string('alias');
|
||||
|
||||
table.integer('code', 3);
|
||||
table.string('nationality');
|
||||
table.integer('priority', 2)
|
||||
.defaultTo(0);
|
||||
}))
|
||||
.then(() => knex.schema.createTable('actors', (table) => {
|
||||
table.increments('id', 12);
|
||||
|
||||
Reference in New Issue
Block a user