blob: 3131525aa23be4d8a09cb1ee62292ce589ea8ba6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
exports.up = function(knex) {
return knex.schema.createTable('users', function(table) {
table.increments();
table.string('username').notNullable();
table.string('password').notNullable();
table.timestamps(true, true);
});
};
exports.down = function(knex) {
return knex.schema.dropTable('users');
};
|