Skip to content

Commit

Permalink
Use TEXT column type for extract column in form_documents table rathe…
Browse files Browse the repository at this point in the history
…r than 255-character string. (#406)
  • Loading branch information
danielnaab authored Dec 13, 2024
1 parent 193f9cd commit 16bca78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export async function up(knex) {
table.string('type').notNullable();
table.string('file_name').notNullable();
table.binary('data').notNullable();
table.string('extract').notNullable();
table.text('extract').notNullable();
});
}

Expand Down

0 comments on commit 16bca78

Please sign in to comment.