Add phone and organization fields to user

This commit is contained in:
Maksim Eltyshev
2020-04-09 18:27:28 +05:00
parent c4acb3eb24
commit f3e0cadca6
11 changed files with 102 additions and 13 deletions

View File

@@ -11,6 +11,8 @@ module.exports.up = (knex) =>
table.text('name').notNullable();
table.text('username');
table.text('avatar');
table.text('phone');
table.text('organization');
table.timestamp('created_at', true);
table.timestamp('updated_at', true);