summaryrefslogtreecommitdiff
path: root/migrations/20170628233335_createFolders.js
blob: a204816c24db8cf83b734c92a6c103aa3ff42f39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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.boolean('liked')
    table.timestamps()
  })
};

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