Merge branch 'main' into develop

This commit is contained in:
Ahmed Bouhuolia
2024-07-04 17:28:05 +02:00

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