update_database: is_unique should only use the table's constraints
#6933
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Upgrade Version Check | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| merge_group: | |
| permissions: read-all | |
| jobs: | |
| version_upgrade_check: | |
| runs-on: spacetimedb-runner | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Verify that upgrade-version still works | |
| run: cd tools/upgrade-version && cargo run -- 123.456.789 | |
| - name: Show diff | |
| run: git diff HEAD | |