From fe776b0d837d5aeb227443f9c037619238620af5 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Sat, 13 Dec 2025 21:56:27 +0000 Subject: [PATCH] migrate db --- db/atlas/atlas.hcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/atlas/atlas.hcl b/db/atlas/atlas.hcl index 24a7afd..faf1f37 100644 --- a/db/atlas/atlas.hcl +++ b/db/atlas/atlas.hcl @@ -2,7 +2,7 @@ env "stripe_invoice_dev" { url = "postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@postgres:5432/stripe_invoice_dev?sslmode=disable" migration { - dir = "file://./stripe_invoice/migrations" + dir = "file://./db/atlas/stripe_invoice/migrations" } } @@ -10,6 +10,6 @@ env "stripe_invoice_prod" { url = "postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@postgres:5432/stripe_invoice_prod?sslmode=disable" migration { - dir = "file://./stripe_invoice/migrations" + dir = "file://./db/atlas/stripe_invoice/migrations" } }