Skip to content

Commit

Permalink
Fix blob size in state_machine table (#821)
Browse files Browse the repository at this point in the history
- Use same blob size used elsewhere as for some reason
  this value has been way too low as given to use
  by schema generation tests.
- We simply change value in initial schema as it has been wrong
  and schema has been non-functional, there can't be existing users.
- Fixes #819
  • Loading branch information
jvalkeal authored and ilayaperumalg committed Feb 11, 2019
1 parent 56abd8f commit b1d5b72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public class V1__Initial_Setup extends AbstractInitialSetupMigration {
"create table state_machine (\n" +
" machine_id varchar(255) not null,\n" +
" state varchar(255),\n" +
" state_machine_context blob(255),\n" +
" state_machine_context blob(1048576),\n" +
" primary key (machine_id)\n" +
")";

Expand Down

0 comments on commit b1d5b72

Please sign in to comment.