Added migration to repo.

This commit is contained in:
DebaucheryLibrarian 2026-02-06 05:20:58 +01:00
parent d85e917935
commit 7062f04e78
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
exports.up = async function(knex) {
await knex.schema.alterTable('releases', (table) => {
table.specificType('alt_descriptions', 'text ARRAY');
});
};
exports.down = async function(knex) {
await knex.schema.alterTable('releases', (table) => {
table.dropColumn('alt_descriptions');
});
};