22 lines
421 B
HCL
22 lines
421 B
HCL
data "external_schema" "gorm" {
|
|
program = [
|
|
"go",
|
|
"run",
|
|
"-mod=mod",
|
|
".",
|
|
]
|
|
}
|
|
|
|
env "gorm" {
|
|
src = data.external_schema.gorm.url
|
|
dev = "postgres://moko:password@localhost:5432/simrs_vx3?sslmode=disable"
|
|
migration {
|
|
dir = "file://migrations"
|
|
}
|
|
url = "postgres://moko:password@localhost:5432/simrs_vx1?sslmode=disable"
|
|
format {
|
|
migrate {
|
|
diff = "{{ sql . \" \" }}"
|
|
}
|
|
}
|
|
} |