table_mixins
TableNameMixin
Mixing to automatically name tables based on class name.
Generates a __tablename__ for classes inheriting from this mixin.
Source code in src/red_utils/ext/sqlalchemy_utils/mixins/table_mixins.py
TimestampMixin
Add a created_at & updated_at column to records.
Add to class declaration to automatically create these columns on records.
Usage:
``` py linenums=1 class Record(Base, TimestampMixin): tablename = ...
...
```