new command for refresh migration
This commit is contained in:
parent
902247b6ed
commit
8809aa18ce
6
Makefile
6
Makefile
@ -8,6 +8,10 @@ migratedown:
|
|||||||
migrate -path db/migrations -database "${DB_TYPE}://${DB_USERNAME}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}?sslmode=disable" -verbose down $n
|
migrate -path db/migrations -database "${DB_TYPE}://${DB_USERNAME}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}?sslmode=disable" -verbose down $n
|
||||||
migrate -path db/migrations -database "${DB_TYPE}://${DB_USERNAME}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}_test?sslmode=disable" -verbose down $n
|
migrate -path db/migrations -database "${DB_TYPE}://${DB_USERNAME}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}_test?sslmode=disable" -verbose down $n
|
||||||
|
|
||||||
|
migraterestart:
|
||||||
|
$(MAKE) migratedown
|
||||||
|
$(MAKE) migrateup
|
||||||
|
|
||||||
seed:
|
seed:
|
||||||
./import_csv.sh
|
./import_csv.sh
|
||||||
|
|
||||||
@ -23,4 +27,4 @@ test:
|
|||||||
server:
|
server:
|
||||||
go run main.go
|
go run main.go
|
||||||
|
|
||||||
.PHONY: server migrateup migratedown sqlc
|
.PHONY: server migrateup migratedown sqlc migraterestart
|
Loading…
Reference in New Issue
Block a user