Releases: tortoise/aerich
Releases · tortoise/aerich
v0.7.2
- Support virtual fields.
- Fix modify multiple times. (#279)
- Added
-i
and --in-transaction
options to aerich migrate
command. (#296)
- Fix generates two semicolons in a row. (#301)
v0.7.1
- Fix syntax error with python3.8.10. (#265)
- Fix sql generate error. (#263)
- Fix initialize an empty database. (#267)
v0.7.1rc1
- Fix postgres sql error (#263)
v0.7.0
Now aerich use .py
file to record versions.
Upgrade Note:
- Truncate
aerich
table
- Delete
migrations/models
folder
- Run
aerich init-db
- Improve
inspectdb
adding support to postgresql::numeric
data type
- Add support for dynamically load DDL classes easing to add support to
new databases without changing Migrate
class logic
- Fix decimal field change. (#246)
- Support add/remove field with index.
v0.6.3
- Improve
inspectdb
and support postgres
& sqlite
.
v0.6.2
- Support migration for specified index. (#203)
v0.6.1
- Fix
pyproject.toml
not existing error. (#217)
v0.6.0
-
Breaking change: Change default config file from aerich.ini
to pyproject.toml
. (#197)
Upgrade note:
- Run
aerich init -t config.TORTOISE_ORM
.
- Remove
aerich.ini
.
-
Remove pydantic
dependency. (#198)
-
inspectdb
support DATE
. (#215)
v0.5.8
- Support
indexes
change. (#193)
v0.5.7
- Fix no module found error. (#188) (#189)