mirror of
https://github.com/fergalmoran/malarkey.git
synced 2026-01-06 17:14:50 +00:00
8 lines
191 B
Bash
Executable File
8 lines
191 B
Bash
Executable File
#!/usr/bin/env bash
|
|
echo Dropping exiting db
|
|
dropdb -f --if-exists -h localhost -U postgres malarkey_dev
|
|
echo Creating new db
|
|
createdb -h localhost -U postgres malarkey_dev
|
|
|
|
mix ecto.migrate
|