You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678910111213 |
- 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')
- }
|