Releases: Vanderhoof/PyDBML
Releases · Vanderhoof/PyDBML
0.4.1
0.4.1
- Reworked
__repr__and__str__methods on all classes. They are now much simplier and more readable. - Comments on classes are now rendered as SQL comments in
sqlproperty (previously notes were rendered as comments on some classes). - Notes on
TableandColumnclasses are rendered as SQL comments insqlproperty:COMMENT ON TABLE "x" is 'y'. - New:
dbmlproperty on most classes and on parsed results which returns the DBML code. - Fix: sql for Reference and TableReference.
0.4.0
0.4.0
- New: Support composite references. Breaks backward compatibility!
col1,col2attributes onReferenceandcol,ref_colattributes onTableReferenceare now lists ofColumninstead ofColumn. TableGroupnow holds references to actual tables.
0.3.5
- New: Support references by aliases.
- New: Support indexes with expressions.
- New: You can now compare SQLObjects of same class.
- New: Add check for duplicate references on a table.
- Fix: minor bug fixes.