
database-migrations
by METR
Running UK AISI's Inspect in the Cloud
SKILL.md
name: database-migrations description: How to create and use our alembic database migration tool. Use when making changes to models.py.
Instructions
Do not write out alembic migrations yourself. Use the alembic tool to generate and apply migrations. You do not need to give alembic the path to alembic.ini. Do not manually drop any tables or columns in the DB. Always use alembic migrations to make schema changes.
Alembic depends on having a valid DATABASE_URL set. The username should be inspect_admin. The password will be automatically generated via RDS IAM.
The URL depends on the environment you are working in. E.g. it should follow a pattern like DATABASE_URL='postgresql://inspect_admin@{environment}-inspect-ai-warehouse.cluster-{cluster-id}.{region}.rds.amazonaws.com/inspect'
tofu output -var-file="${ENVIRONMENT}.tfvars" -raw warehouse_database_url_admin will return the correct URL for the given environment.
Make sure to have AWS_PROFILE=staging set for RDS IAM auth and tofu commands.
To create a new migration, run:
alembic revision --autogenerate -m "description of changes"
Run ruff check --fix && ruff format to silence any formatting issues in the generated migration file.
You may need to ensure the DB is up to date before generating a new migration. Run:
alembic upgrade head
If we want to regenerate a migration file (in a branch we're working on after making schema changes since the last migration), we can delete the previous migration file and run the revision command again.
- Run
alembic downgrade -1to revert the last migration. - Delete the migration file from the versions/ directory.
- Run
alembic upgrade headto ensure the DB is up to date. - Run the revision command again to generate a new migration file.
Verification
Run the tests in tests/core/db/test_alembic_migrations.py
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
1ヶ月以内に更新
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon


