mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 06:40:31 +00:00
fix: alter value column of the settings table to text instead of string
This commit is contained in:
@@ -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();
|
||||||
|
});
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user