blob: 3f86d5a95a147445efadf04641b778e3c8266c49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
exports.up = function(knex, Promise) {
return knex.schema.createTable('users', function (table) {
table.increments()
table.string('username')
table.string('password')
table.string('realname')
table.string('level')
table.datetime('lastseen')
table.json('profile')
table.timestamps()
})
};
exports.down = function(knex, Promise) {
return knex.schema.dropTable('users')
};
|