forked from DebaucheryLibrarian/traxxx
Added migration to repo.
This commit is contained in:
11
migrations/20260206034715_raw_releases.js
Normal file
11
migrations/20260206034715_raw_releases.js
Normal 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');
|
||||||
|
});
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user