1. O!MyModels now also can generate python Dataclass from DDL. Use argument models_type='dataclass' or if you use the cli flag --models_type dataclass or -m dataclass 2. Added ForeignKey generation to GinoORM Models, added support for ondelete and onupdate
0.5.0
1. Added Enums/IntEnums types for Gino & Pydantic 2. Added UUID type 3. Added key `schema_global` in create_models method (by default schema_global = True). If you set schema_global=False schema if it exists in ddl will be defined for each table (model) in table args. This way you can have differen schemas per model (table). By default schema_global=True - this mean for all table only one schema and it is defined in `db = Gino(schema="prefix--schema-name")`. 4. If column is a primary key (primary_key=True) nullable argument not showed, because primary keys always are not null. 5. To cli was added flag '--no-global-schema' to set schema in table_args.
0.4.1
1. Added correct work with table names contains multiple '-'
0.4.0
1. Added generation for Pydantic models from ddl 2. Main method create_gino_models renamed to create_models
0.3.0
1. Generated Index for 'index' statement in __table_args__ (not unique constrait as previously) 2. Fix issue with column size as tuple (4,2)
0.2.0
1. Valid generating columns in models: autoincrement, default, type, arrays, unique, primary key and etc. 2. Added creating __table_args__ for indexes