First steps in integration of IVIS.
This commit is contained in:
parent
bf626993f4
commit
dce5ba7464
35 changed files with 10098 additions and 91 deletions
|
@ -0,0 +1,12 @@
|
|||
exports.up = (knex, Promise) => (async () => {
|
||||
await knex.schema.table('signal_sets', table => {
|
||||
table.integer('mt_dataset_type');
|
||||
});
|
||||
|
||||
await knex.schema.table('namespaces', table => {
|
||||
table.integer('mt_campaign').unsigned();
|
||||
});
|
||||
})();
|
||||
|
||||
exports.down = (knex, Promise) => (async () => {
|
||||
})();
|
Loading…
Add table
Add a link
Reference in a new issue