mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-03-14 01:37:45 +00:00
8 lines
217 B
Bash
Executable File
8 lines
217 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Get current directory (of this script)
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
# Run SQL files in schema/ directory
|
|
psql -d "$DATABASE_URL" -f $DIR/schema/*.sql
|