Merge pull request #1874 from automatisch/make-value-column-text-in-datastore

fix(datastore): make value column text
This commit is contained in:
Ali BARIN
2024-05-23 10:13:47 +02:00
committed by GitHub

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