https://github.com/exitare/phd-tracker
https://github.com/exitare/phd-tracker
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/exitare/phd-tracker
- Owner: Exitare
- Created: 2025-06-24T19:33:54.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-29T22:57:49.000Z (12 months ago)
- Last Synced: 2025-09-25T11:57:25.360Z (10 months ago)
- Language: Python
- Size: 853 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PhD Tracker
### QA Deployment Status
[](https://github.com/Exitare/PhD-Tracker/actions/workflows/staging_deploy.yml)
### Live Deployment Status
[](https://github.com/Exitare/PhD-Tracker/actions/workflows/prod_deploy.yml)
## Alembic
Apply Migrations (When Needed)
To apply new changes later:
```alembic upgrade head```
Make Future Schema Changes with Alembic
Whenever you update your models:
```alembic revision --autogenerate -m "Add X table / Modify Y column"```
```alembic upgrade head```
To recreate schema:
```alembic upgrade head```