Working registration/auth
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
exports.up = function(knex) {
|
||||
return knex.schema.createTable('users', function (table) {
|
||||
table.increments('id');
|
||||
table.string('name');
|
||||
table.string('username');
|
||||
table.string('email').unique();
|
||||
table.string('password');
|
||||
table.timestamps();
|
||||
|
||||
Reference in New Issue
Block a user