How to ignore tables in migrations
devTo prevent Aerich from managing a specific table during migrations, set managed = False in the model's Meta class.
Note: This setting is only recognized by aerich migrate. It is not recognized by tortoise-orm or aerich init-db.
class MyModel(Model):
class Meta:
managed = False