Skip to content

Commit 27b6127

Browse files
committed
fix: Makefile up down migration command
1 parent 7bc88b3 commit 27b6127

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ models:
4444
sqlboiler --no-tests psql
4545

4646
migrate-up:
47-
migrate -database 'postgres://nebula_test:password@localhost:5432/nebula_test?sslmode=disable' -path pkg/db/migrations up
47+
migrate -database 'postgres://nebula_test:password@localhost:5432/nebula_test?sslmode=disable' -path db/migrations up
4848

4949
migrate-down:
50-
migrate -database 'postgres://nebula_test:password@localhost:5432/nebula_test?sslmode=disable' -path pkg/db/migrations down
50+
migrate -database 'postgres://nebula_test:password@localhost:5432/nebula_test?sslmode=disable' -path db/migrations down
5151

5252
.PHONY: all clean test format tools models migrate-up migrate-down

0 commit comments

Comments
 (0)