Added migration to repo.
This commit is contained in:
parent
2bcb4413ea
commit
0dc7c5572a
|
@ -0,0 +1,21 @@
|
|||
exports.up = async function(knex) {
|
||||
await knex.schema.alterTable('alerts', (table) => {
|
||||
table.json('meta');
|
||||
});
|
||||
|
||||
await knex.schema.alterTable('stashes', (table) => {
|
||||
table.text('comment');
|
||||
table.json('meta');
|
||||
});
|
||||
};
|
||||
|
||||
exports.down = async function(knex) {
|
||||
await knex.schema.alterTable('alerts', (table) => {
|
||||
table.dropColumn('meta');
|
||||
});
|
||||
|
||||
await knex.schema.alterTable('stashes', (table) => {
|
||||
table.dropColumn('comment');
|
||||
table.dropColumn('meta');
|
||||
});
|
||||
};
|
Loading…
Reference in New Issue