blob: 41cd457216b6e508b35c46dfa4e7d91d5c32e3c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
exports.up = function(knex, Promise) {
return knex.schema.createTable('datasets', function (table) {
table.increments()
table.string('username')
table.boolean('completed')
table.boolean('processing')
table.string('status')
table.string('status')
table.string('activity')
table.string('module')
table.string('checkpoint')
table.string('dataset')
table.json('opt')
table.timestamps()
})
};
exports.down = function(knex, Promise) {
return knex.schema.dropTable('datasets')
};
|