mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
Add preferences tab to user settings, add subscribe to own cards option
This commit is contained in:
parent
f3e0cadca6
commit
6a82448dc7
13 changed files with 96 additions and 2 deletions
|
@ -13,6 +13,7 @@ module.exports.up = (knex) =>
|
|||
table.text('avatar');
|
||||
table.text('phone');
|
||||
table.text('organization');
|
||||
table.boolean('subscribe_to_own_cards').notNullable();
|
||||
|
||||
table.timestamp('created_at', true);
|
||||
table.timestamp('updated_at', true);
|
||||
|
|
|
@ -9,6 +9,7 @@ exports.seed = (knex) => {
|
|||
isAdmin: true,
|
||||
name: 'Demo Demo',
|
||||
username: 'demo',
|
||||
subscribeToOwnCards: false,
|
||||
createdAt: date,
|
||||
updatedAt: date,
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue