Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/nitpicks.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
- markdown: |
Reminder: Please update the DB Readme and comment whether migrations are reversible (include rollback scripts if applicable).
If creating new tables, update the [tables list](https://github.com/cowprotocol/services/blob/main/crates/database/src/lib.rs#L51-L87).
When adding a new index, consider using `CREATE INDEX CONCURRENTLY` for tables involved in the critical execution path.
* If creating new tables, update the [tables list](https://github.com/cowprotocol/services/blob/main/crates/database/src/lib.rs#L51-L87).
* When adding a new index, consider using `CREATE INDEX CONCURRENTLY` for tables involved in the critical execution path.
* For the breaking changes, keep in mind that 2 autopilot instances will be running in parallel during deployment, so the change shouldn't cause panics in the previous autopilot version. As a workaround, first, update the code to support the change and only in the next release, apply the DB breaking changes.
pathFilter:
- "database/sql/**"

Expand Down
Loading