Hasura CLI: hasura migrate create

Create files required for a migration.

Synopsis

Create sql and yaml files required for a migration.

hasura migrate create [migration-name] [flags]

Examples

# Setup migration files for the first time by introspecting a server:
hasura migrate create "init" --from-server

# Use with admin secret:
hasura migrate create --admin-secret "<admin-secret>"

# Setup migration files from an instance mentioned by the flag:
hasura migrate create init --from-server --endpoint "<endpoint>"

Options

    --from-server                 get SQL statements and Hasura metadata from the server
-h, --help                        help for create
    --metadata-from-file string   path to a hasura metadata file to be used for up actions
    --metadata-from-server        take metadata from the server and write it as an up migration file
    --schema stringArray          name of Postgres schema to export as a migration (default [public])
    --sql-from-file string        path to an SQL file which contains the SQL statements
    --sql-from-server             take pg_dump from the server and save it as a migration

Options inherited from parent commands

--admin-secret string   admin secret for Hasura GraphQL engine
--endpoint string       http(s) endpoint for Hasura GraphQL engine
--log-level string      log level (DEBUG, INFO, WARN, ERROR, FATAL) (default "INFO")
--no-color              do not colorize output (default: false)
--project string        directory where commands are executed (default: current dir)
--skip-update-check     skip automatic update check on command execution

SEE ALSO

Auto generated by spf13/cobra