Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2024-12-27 | 2.1 kB | |
v0.8.1 source code.tar.gz | 2024-12-27 | 76.1 kB | |
v0.8.1 source code.zip | 2024-12-27 | 89.9 kB | |
Totals: 3 Items | 168.2 kB | 0 |
Changed
- Move
tomlkit
to optional and supportpip install aerich[toml]
. (#392) - Add version constraint(>=0.21) for tortoise-orm. (#388)
- Allow run
aerich init-db
with empty migration directories instead of abort with warnings. (#286)
Fixed
- fix: add o2o field does not create constraint when migrating. (#396)
- Migration with duplicate renaming of columns in some cases. (#395)
- fix: intermediate table for m2m relation not created. (#394)
- Migrate add m2m field with custom through generate duplicated table. (#393)
- Migrate drop the wrong m2m field when model have multi m2m fields. (#376)
- KeyError raised when removing or renaming an existing model. (#386)
- fix: error when there is
__init__.py
in the migration folder. (#272) - Setting null=false on m2m field causes migration to fail. (#334)
- Fix NonExistentKey when running
aerich init
without[tool]
section in config file. (#284) - Fix configuration file reading error when containing Chinese characters. (#286)
- sqlite: failed to create/drop index. (#302)
- PostgreSQL: Cannot drop constraint after deleting or rename FK on a model. (#378)
- Fix create/drop indexes in every migration. (#377)
- Sort m2m fields before comparing them with diff. (#271)