You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ What's different:
9
9
* Flask-SQLAlchemy columns are used (e.g. `db.Integer`).
10
10
* Metadata is only implicit in tables
11
11
* Defaults to generating backrefs in relationships. `--nobackref` still included as option in case backrefs are not wanted.
12
-
* Naming of backrefs is the class name is snake_case (as opposed to CamelCase) and is pluralized if it's Many-to-One or Many-to-Many using <ahref="https://pypi.python.org/pypi/inflect">inflect</a>.
12
+
* Naming of backrefs is class name in snake_case (as opposed to CamelCase) and is pluralized if it's Many-to-One or Many-to-Many using <ahref="https://pypi.python.org/pypi/inflect">inflect</a>.
13
13
* Generate explicit primary joins. I deal with pretty complicated tables that need explicit primary joins.
14
14
* If column has a server_default set it to `FetchValue()` instead of trying to determine what that value is. Original code did not set the right server defaults in my set up.
15
-
*`--ignorefk` ignores special name columns (e.g. id, inserted, updated) when generating association tables. Original code requires all columns to be foreign keys in order to generate association table. Example: `--ignorefk id,inserted,updated`.
15
+
*`--ignore-cols` ignores special columns (e.g. id, inserted, updated) when generating association tables. Original code requires all columns to be foreign keys in order to generate association table. Example: `--ignore-cols id,inserted,updated`.
0 commit comments