9 lines
97 B
Bash
Executable File
9 lines
97 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -f .env ]; then
|
|
source .env
|
|
fi
|
|
|
|
cd sql/schema
|
|
goose turso $DATABASE_URL up
|