app-cloudep-tweeting-service/generate/database
王性驊 5d22b9c575 feature/post_v2 (#2)
Co-authored-by: daniel.w <daniel.w@intteam.net>
Reviewed-on: #2
2024-08-30 07:08:43 +00:00
..
mongodb feature/post_v2 (#2) 2024-08-30 07:08:43 +00:00
mysql/create init comment and post service 2024-08-28 17:09:01 +08:00
readme.md init comment and post service 2024-08-28 17:09:01 +08:00

readme.md

migrate

數據庫遷移工具

golang-migrate

安裝 make

brew install Makefile

安裝 golang-migrate

brew install golang-migrate

執行刪除 mysql schema

migrate -source file://database/migrations/mysql -database 'mysql://account:password@tcp(127.0.0.1:3306)/esc_c2c' down

執行安裝 mysql schema

migrate -source file://database/migrations/mysql -database 'mysql://account:password@tcp(127.0.0.1:3306)/esc_c2c' up

執行刪除 mongo schema

migrate -source file://database/migrations/mongodb -database 'mongodb://127.0.0.1:27017/esc_c2c' down

執行安裝 mongo schema

migrate -source file://database/migrations/mongodb -database 'mongodb://127.0.0.1:27017/esc_c2c' up