mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
d823d201b9
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6701 Co-authored-by: Daniel Harvey <4729125+danieljharvey@users.noreply.github.com> GitOrigin-RevId: 13ab91a8c4241fb4e60df9e8856bc926afac6be9
7 lines
148 B
Bash
Executable File
7 lines
148 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
|
|
create database hasura_metadata;
|
|
EOSQL
|