From 795784080e5adc21e08d02ed6b8a8bb206358ef1 Mon Sep 17 00:00:00 2001 From: kynmh69 Date: Sat, 5 Oct 2024 08:48:40 +0900 Subject: [PATCH] #46 mod README.md --- README.md | 2 +- src/updater/README.md | 17 +++++------------ 2 files changed, 6 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index c5ad10b..f893f6e 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ |-------------------|-------| | Go | 1.22 | | gin | v1.10 | -| goqu | v9 | +| grom | v1.25 | | postgresSQL | 16 | ## 機能 diff --git a/src/updater/README.md b/src/updater/README.md index c3f7236..5c58972 100644 --- a/src/updater/README.md +++ b/src/updater/README.md @@ -7,7 +7,7 @@ ## データベースのマイグレーション -マイグレーションはgooseを利用します。 +マイグレーションはgromを利用します。 ### データベースの起動 @@ -17,24 +17,17 @@ docker compose up -d database ``` -### gooseのインストール +### gormのダウンロード ```bash -go install github.com/pressly/goose/v3/cmd/goose@latest +go mod download ``` ### マイグレーションの実行 ```bash -cd src/updater/database/migrations -goose postgres "host=localhost user=app password=password dbname=holidays sslmode=disable" up -``` - -### マイグレーションの削除 - -```bash -cd src/updater/database/migrations -goose postgres "host=localhost user=app password=password dbname=holidays sslmode=disable" down +cd src/cmd +go run migration.go ``` ## 実行方法