14 lines
355 B
JavaScript
14 lines
355 B
JavaScript
exports.up = async function(knex) {
|
|
await knex.schema.alterTable('series', (table) => {
|
|
table.specificType('alt_descriptions', 'text ARRAY');
|
|
table.json('attributes');
|
|
});
|
|
};
|
|
|
|
exports.down = async function(knex) {
|
|
await knex.schema.alterTable('series', (table) => {
|
|
table.dropColumn('alt_descriptions');
|
|
table.dropColumn('attributes');
|
|
});
|
|
};
|