Skip to content

Commit

Permalink
fix(datastore): make value column text
Browse files Browse the repository at this point in the history
  • Loading branch information
barinali committed May 9, 2024
1 parent 0f8e056 commit 1dc9646
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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();
});
}

0 comments on commit 1dc9646

Please sign in to comment.