fix: alter value column of the settings table to text instead of string

This commit is contained in:
Ahmed Bouhuolia
2024-07-04 08:58:41 +02:00
parent 7b4afd3859
commit 632cc3d72e

View File

@@ -0,0 +1,11 @@
exports.up = function (knex) {
return knex.schema.table('settings', (table) => {
table.text('value').alter();
});
};
exports.down = (knex) => {
return knex.schema.table('settings', (table) => {
table.string('value').alter();
});
};