Migration commit from heyvince.co to heyvince.ca
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
from sqlalchemy import Column, Integer, String, Float, DateTime, Numeric, Date, Time, Boolean, LargeBinary
|
||||
from dft.base.mixin import DFTMixin
|
||||
from .base import Base
|
||||
|
||||
|
||||
####
|
||||
# Model generated by DFT
|
||||
# - From : {{ from_file }}
|
||||
# - Version : {{ revision_id }}
|
||||
# - Created Date : {{ create_date }}
|
||||
####
|
||||
class {{ model_name }}(Base, DFTMixin):
|
||||
__tablename__ = '{{ model_name }}'
|
||||
{% for item in columns %}
|
||||
{{ item }} {% endfor %}
|
||||
Reference in New Issue
Block a user