summaryrefslogtreecommitdiff
path: root/migrations/20170628233335_createFolders.js
blob: 466e109e76169d20920b74b612100fef094532fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
exports.up = function(knex, Promise) {
  return knex.schema.createTable('folders', function (table) {
    table.increments()
    table.string('name').unique()
    table.string('username')
    table.text('description')
    table.timestamps()
  })
};

exports.down = function(knex, Promise) {
  return knex.schema.dropTable('folders')
};