mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
7 lines
117 B
Bash
7 lines
117 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
cockroach sql --insecure --database "$COCKROACH_DATABASE" <<-EOSQL
|
||
|
create schema hasura;
|
||
|
EOSQL
|