Added migration to repo.

This commit is contained in:
DebaucheryLibrarian 2025-04-04 05:37:18 +02:00
parent 2bcb4413ea
commit 0dc7c5572a
1 changed files with 21 additions and 0 deletions

View File

@ -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');
});
};