Migrations are plain SQL files in `src/migrations/scripts/`. To add a migration, create a new timestamped `.sql` file (format: `YYYYMMDDHHMMSS_Description.sql`) and apply it manually to the target database.
Migrations are plain SQL files in `src/migrations/scripts/`. To add a migration, create a new timestamped `.sql` file (format: `YYYYMMDD_HHMM_Description.sql`) and apply it manually to the target database.
Each migration must be marked as an Embedded Resource in the Migrations.csproj
## NuGet Sources
@@ -72,5 +74,7 @@ Requires access to two internal feeds (configured in `nuget.config`):
Commits must follow Conventional Commits format (enforced by commitlint in CI). Semantic-release uses commits to determine version bumps.
Never commit automatically — always wait for the user to explicitly request a commit.