summaryrefslogtreecommitdiff
path: root/migrations/20180529000627_createUsers.js
blob: 5346555be68b8d6b847ab9cf8d925cd9c77879fd (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('users', function (table) {
    table.increments()
    table.string('username')
    table.string('password')
    table.string('realname')
    table.integer('level')
    table.string('avatar')
    table.datetime('lastseen')
    table.json('profile')
    table.timestamps()
  })
};

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