hasura / hasura/graphql-engine
Schema is not updated after migration
- Dominant language
- TypeScript
- Stars
- 32.1k
- Forks
- 3k
- PR merge metrics
- PR metrics pending
Description
### Version Information
Server Version: v2.0.9-cloud.
### Environment
Cloud
### What is the expected behaviour?
Update schema after migrations
### Keywords
Custom field, schema, introspection
### What is the current behaviour?
last migration is:
```sql
-- down
ALTER TABLE "public"."wod" ALTER COLUMN "name" TYPE citext;
-- up
ALTER TABLE "public"."wod" ALTER COLUMN "name" TYPE varchar(128);
```
The schema should be `String`, but it continues to be `citext` see the screen shot below.
It happens for 2 of my tables.
### Screenshots or Screencast


### Possible solution
Tried reloading metadata, but didn't work.
### Works locally, but not on Cloud
👆
Contributor guide
Assessment
This issue has not been assessed yet.