ambassadors
This commit is contained in:
parent
e7c0c5ca4d
commit
3be578174f
3 changed files with 3 additions and 3 deletions
0
app/campaigns/forms.py
Normal file
0
app/campaigns/forms.py
Normal file
|
|
@ -11,6 +11,4 @@ class Campaign(db.Model):
|
||||||
__tablename__ = 'campaign'
|
__tablename__ = 'campaign'
|
||||||
id = Column('id', INTEGER(), primary_key=True)
|
id = Column('id', INTEGER(), primary_key=True)
|
||||||
title = Column('title', TEXT(), nullable=False)
|
title = Column('title', TEXT(), nullable=False)
|
||||||
email = Column('email', TEXT(), nullable=False, unique=True)
|
#ambassadors
|
||||||
password = Column('password', TEXT(), nullable=False)
|
|
||||||
user_type = Column('user_type', TEXT(), nullable=False)
|
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
{% extends 'base.html' %}
|
||||||
|
{% block title %}Add campaign{% endblock title %}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue