Files
traxxx/migrations/20260302222545_series_alt_descriptions.js
2026-03-02 22:36:05 +01:00

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');
});
};