diff --git a/aerich/migrate.py b/aerich/migrate.py index 2fd5ed4..0d691d5 100644 --- a/aerich/migrate.py +++ b/aerich/migrate.py @@ -486,6 +486,9 @@ class Migrate: elif option == "nullable": # change nullable cls._add_operator(cls._alter_null(model, new_data_field), upgrade) + elif option == "description": + # change comment + cls._add_operator(cls._set_comment(model, new_data_field), upgrade) else: if modified: continue