Files
WithoutPants f3c8e7ac9c Convert career length fields to dates (#6682)
* Convert career start/end to date
* Update UI to accept dates for career length fields
* Fix date filtering
---------
Co-authored-by: Gykes <24581046+Gykes@users.noreply.github.com>
2026-03-17 15:48:30 +11:00
..
2022-09-06 07:03:40 +00:00
2022-09-06 07:03:40 +00:00
2023-09-25 12:27:20 +10:00
2024-05-09 12:04:58 +10:00
2024-06-11 13:08:49 +10:00
2024-06-18 11:24:15 +10:00

Creating a migration

  1. Create new migration file in the migrations directory with the format NN_description.up.sql, where NN is the next sequential number.

  2. Update pkg/sqlite/database.go to update the appSchemaVersion value to the new migration number.

For migrations requiring complex logic or config file changes, see existing custom migrations for examples.