fix(datastore): make value column text

This commit is contained in:
Ali BARIN
2024-05-09 20:31:47 +00:00
parent 0f8e05610b
commit 1dc9646894

View File

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