Answers for "hasura v3 migrations apply"

1

hasura v3 migrations apply

# first apply metadata, this will connect Hasura to the configured databases.
hasura metadata apply
# now we can apply migrations to the connected databases.
hasura migrate apply --all-databases
# follow it with a metadata reload to make sure Hasura is aware of any newly created database objects.
hasura metadata reload
Posted by: Guest on September-28-2021

Browse Popular Code Answers by Language