Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion .github/workflows/test_database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- uses: actions/checkout@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: ${{ github.head_ref || github.ref_name }}

- name: Set up tbls
uses: k1low/setup-tbls@f25e3d013a596865b2db90dac7ee19e9f15b5780 # v1.4.0
Expand Down Expand Up @@ -185,7 +186,7 @@ jobs:
git diff --staged --quiet || (
git commit -m "chore: update ER diagrams [skip ci]" &&
git restore . &&
git push origin HEAD:${{ github.head_ref }}
git push origin HEAD:${{ github.head_ref || github.ref_name }}
)

# - name: Run tests
Expand Down
Binary file added diagrams/erdiagram_targetdb_latest.pdf
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The Q3C extension is required for the database. You can install it by the follow

Python and the following packages as well as their dependencies will be required for `targetdb`.
The dependencies are automatically installed when you install the `targetdb` package via `pip`.
Package versions shown here are those used for the development (as of January 2026).
Package versions shown here are those used for the development (as of May 2026).
Newer (and somewhat older) versions should also work.

| Package | Version |
Expand Down Expand Up @@ -114,7 +114,7 @@ pfs-targetdb-cli create-schema -c dbconf.toml

### Generate an ER diagram

```
```bash
# draw the ER diagram
pfs-targetdb-cli diagram -c dbconf.toml
```
Expand Down
Loading