forked from DebaucheryLibrarian/traxxx
12 lines
275 B
JavaScript
12 lines
275 B
JavaScript
|
exports.up = async (knex) => {
|
||
|
await knex.schema.alterTable('releases', (table) => {
|
||
|
table.specificType('alt_titles', 'text ARRAY');
|
||
|
});
|
||
|
};
|
||
|
|
||
|
exports.down = async (knex) => {
|
||
|
await knex.schema.alterTable('releases', (table) => {
|
||
|
table.dropColumn('alt_titles');
|
||
|
});
|
||
|
};
|