12 lines
297 B
JavaScript
12 lines
297 B
JavaScript
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');
|
|
});
|
|
};
|