Added support for Datatables
Added support for ajax-based server side validation (useful for validation of emails, duplicate usernames, etc.) User form more or less ready in the basic version (i.e. without permission management)
This commit is contained in:
parent
f776170854
commit
c81f5544e6
26 changed files with 1097 additions and 167 deletions
8
setup/knex/migrations/20170617123450_create_user_name.js
Normal file
8
setup/knex/migrations/20170617123450_create_user_name.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
exports.up = function(knex, Promise) {
|
||||
return knex.schema.table('users', table => {
|
||||
table.string('name');
|
||||
})
|
||||
};
|
||||
|
||||
exports.down = function(knex, Promise) {
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue