Added alt descriptions and attributes columns to series.

This commit is contained in:
DebaucheryLibrarian
2026-03-02 22:36:05 +01:00
parent 16648d50f6
commit bcb7a56588

View File

@@ -0,0 +1,13 @@
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');
});
};