blob: 931113606b633f1a87b0775701cac290ec32d988 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
exports.up = function(knex, Promise) {
return knex.schema.createTable('folders', function (table) {
table.increments()
table.string('name')
table.string('datatype') // video, audio, audio spectrogram
table.string('username')
table.string('activity')
table.string('module')
table.string('checkpoint')
table.json('opt')
table.timestamps()
})
};
exports.down = function(knex, Promise) {
return knex.schema.dropTable('folders')
};
|