You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For newbies <-- it would be great to have a clear example of how to connect to the database and see the schema.
This is essential I would say to later than see how the impact of a change in `current.sql` will take immediate effect (i.e. migration happening in realtime).
To connect to the newly created container db with psql/{db tool} you connect to it by default if not anything else specified via port 6543 on localhost with the `DATABASE_NAME` specificed as such:
52
+
53
+
```bash
54
+
$ psql postgres://$DATABASE_NAME@localhost:6543
55
+
```
56
+
49
57
#### Use Case Example:
50
58
51
59
> Attach to `dev`, run `yarn db commit` to commit the latest migration, then
0 commit comments