mirror of
https://github.com/Retropex/apolloapi-v2.git
synced 2025-05-20 07:00:42 +02:00
11 lines
302 B
JavaScript
11 lines
302 B
JavaScript
exports.up = function(knex, Promise) {
|
|
return knex.schema.table('settings', function(t) {
|
|
t.text('node_user_conf').defaultTo(null);
|
|
});
|
|
};
|
|
|
|
exports.down = function(knex, Promise) {
|
|
return knex.schema.table('settings', function(t) {
|
|
t.dropColumn('node_user_conf');
|
|
});
|
|
}; |