Fix schema inconsistencies
This commit is contained in:
parent
0d9f0d1daa
commit
d6a0d3b090
2 changed files with 38 additions and 1 deletions
|
@ -51,7 +51,7 @@ class NationBuilderCachePerson(model.Base):
|
|||
id = sa.Column(sa.Integer(), nullable=False)
|
||||
signup_type = sa.Column(sa.Integer(), nullable=True)
|
||||
external_id = sa.Column(sa.String(length=50), nullable=True)
|
||||
tags = sa.Column(sa.String(length=255), nullable=True)
|
||||
tags = sa.Column(sa.Text(), nullable=True)
|
||||
first_name = sa.Column(sa.String(length=100), nullable=True)
|
||||
middle_name = sa.Column(sa.String(length=100), nullable=True)
|
||||
last_name = sa.Column(sa.String(length=100), nullable=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue