1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-24 15:49:46 +02:00

Add phone and organization fields to user

This commit is contained in:
Maksim Eltyshev 2020-04-09 18:27:28 +05:00
parent c6ecf126d0
commit 9b4e3931a9
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);