summaryrefslogtreecommitdiff
path: root/migrations/20170628233706_createJobs.js
blob: 4b17c6f8f05a6e557d5c2bd22331cac09f476c17 (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('jobs', function (table) {
    table.increments()
    table.string('name')
    table.string('username')
    table.boolean('completed')
    table.string('tool')
    table.timestamps()
  })
};

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