AnthoLume/database/migrations
Evan Reichard f1414e3e4e fix(timezones): move from utc offsets to timezones
This fixed various issues related to calculating streaks, etc. Now we
appropriately handle time as it was, vs as it is relative to an offset.
2024-03-11 22:20:21 -07:00
..
20240128012356_user_auth_hash.go feat(db): button up migrations 2024-02-01 20:05:35 -05:00
20240311121111_user_timezone.go fix(timezones): move from utc offsets to timezones 2024-03-11 22:20:21 -07:00
README.md feat(db): button up migrations 2024-02-01 20:05:35 -05:00

README.md

DB Migrations

goose create migration_name

Note

Since we update both the schema.sql, as well as the migration files, when we create a new DB it will inherently be up-to-date. We don't want to run the migrations if it's already up-to-date. Instead each migration checks if we have a new DB (via a value passed into the context), and if we do we simply return.