const matrix = require('../generated/prescore_matrix.json') exports.up = function (knex) { return knex.schema.createTable('aspect_labels', function (table) { table.integer('aspect_id').primary() table.smallint('a').notNullable() table.smallint('b').notNullable() }) } exports.down = function (knex) { return knex.schema.dropTable('aspect_labels') }