mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-04 00:05:27 +00:00
8 lines
191 B
Bash
8 lines
191 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Get current directory (of this script)
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
# Run schema file
|
|
psql -d "$DATABASE_URL" -f schema.sql
|