diff options
Diffstat (limited to 'finito-postgres/migrations/2018-09-26-160621_bootstrap_finito_schema/up.sql')
-rw-r--r-- | finito-postgres/migrations/2018-09-26-160621_bootstrap_finito_schema/up.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/finito-postgres/migrations/2018-09-26-160621_bootstrap_finito_schema/up.sql b/finito-postgres/migrations/2018-09-26-160621_bootstrap_finito_schema/up.sql index 0de1a9e3c6df..18ace393b8d9 100644 --- a/finito-postgres/migrations/2018-09-26-160621_bootstrap_finito_schema/up.sql +++ b/finito-postgres/migrations/2018-09-26-160621_bootstrap_finito_schema/up.sql @@ -30,7 +30,7 @@ CREATE TABLE actions ( event_id UUID NOT NULL REFERENCES events(id), content JSONB NOT NULL, status ActionStatus NOT NULL, - error JSONB + error TEXT ); CREATE INDEX idx_actions_machines ON actions(fsm_id); |