mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
11 lines
280 B
JavaScript
11 lines
280 B
JavaScript
module.exports.up = async (knex) => {
|
|
return knex.schema.table('user_account', (table) => {
|
|
table.setNullable('password');
|
|
});
|
|
};
|
|
|
|
module.exports.down = async (knex) => {
|
|
return knex.schema.table('user_account', (table) => {
|
|
table.dropNullable('password');
|
|
});
|
|
};
|