mirror of
https://github.com/hasura/graphql-engine.git
synced 2025-01-05 22:34:22 +03:00
7 lines
137 B
Bash
7 lines
137 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
|
||
|
create schema hasura;
|
||
|
EOSQL
|