I chose to alter the existing auth migration for the sake of code clarity. This means we have to migrate down 1 the existing staging db before merging this.
How?
Checkout main
```
gco main
```
Port foreward the postgres container to my local machine.
```
ssh -L 5432:172.25.0.2:5432 helpwave -N
```
Down migration by one:
```
./migrate.sh down 1
```
Close port forewarding and merge, CI run up migration.
I chose to alter the existing auth migration for the sake of code clarity. This means we have to
migrate down 1
the existing staging db before merging this.How?
Checkout main ``` gco main ``` Port foreward the postgres container to my local machine. ``` ssh -L 5432:172.25.0.2:5432 helpwave -N ``` Down migration by one: ``` ./migrate.sh down 1 ``` Close port forewarding and merge, CI run up migration.