7 lines
299 B
Makefile
7 lines
299 B
Makefile
# Brings the database up to the current migration
|
|
migrate-up:
|
|
GOOSE_DRIVER=sqlite3 GOOSE_DBSTRING=./cmd/gocook.db goose -dir ./internal/migrations up
|
|
|
|
# Rolls back one migration at a time
|
|
migrate-down:
|
|
GOOSE_DRIVER=sqlite3 GOOSE_DBSTRING=./cmd/gocook.db goose -dir ./internal/migrations down
|