oshipka/vm_gen/templates/_model_py

23 lines
693 B
Plaintext

[%- if _choice_types %]
from sqlalchemy_utils import ChoiceType
[%- endif %]
class [[ name ]](db.Model, ModelController):
[%- include "_model_choice_header_py" %]
[%- include "_model_searchable_header_py" %]
[%- for column in columns %]
[%- if column._type == 'relationship' %]
[%- include "_relationship_py" %]
[%- else %]
[[ column.name ]] = db.Column([[ column._type ]],
[%- if column.default %]default="[[ column.default ]]",[%- endif %]
[%- if column.index %]index=True,[%- endif %])
[%- endif %]
[%- endfor %]
[%- if extra_code %]
[[ extra_code ]]
[%- endif %]