Migration commit from heyvince.co to heyvince.ca

This commit is contained in:
vgoineau
2024-05-03 09:24:48 -04:00
commit 2c898da04f
24 changed files with 679 additions and 0 deletions
+15
View File
@@ -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 %}