mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
fix the down migration
This commit is contained in:
parent
8e5f78b1ee
commit
830d5a4587
@ -2,13 +2,13 @@ ALTER TABLE hdb_catalog.hdb_cron_triggers
|
||||
DROP COLUMN created_at;
|
||||
|
||||
ALTER TABLE hdb_catalog.hdb_cron_events
|
||||
ALTER COLUMN created_at TIMESTAMP default now();
|
||||
ALTER COLUMN created_at TYPE TIMESTAMP;
|
||||
|
||||
ALTER TABLE hdb_catalog.hdb_cron_event_invocation_logs
|
||||
ALTER COLUMN created_at TIMESTAMP default now();
|
||||
ALTER COLUMN created_at TYPE TIMESTAMP;
|
||||
|
||||
ALTER TABLE hdb_catalog.hdb_scheduled_events
|
||||
ALTER COLUMN created_at TIMESTAMP default now();
|
||||
ALTER COLUMN created_at TYPE TIMESTAMP;
|
||||
|
||||
ALTER TABLE hdb_catalog.hdb_scheduled_event_invocation_logs
|
||||
ALTER COLUMN created_at TIMESTAMP default now();
|
||||
ALTER COLUMN created_at TYPE TIMESTAMP;
|
||||
|
Loading…
Reference in New Issue
Block a user