6 lines
201 B
Bash
6 lines
201 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Override the default Supabase migrate.sh
|
||
|
|
# Our migrations are handled via init.sql which runs as postgres user
|
||
|
|
echo "Skipping built-in migrate.sh - migrations handled by init.sql"
|
||
|
|
exit 0
|