Fix schema inconsistencies

This commit is contained in:
Lance Edgar 2023-09-13 09:18:45 -05:00
parent 0d9f0d1daa
commit d6a0d3b090
2 changed files with 38 additions and 1 deletions

View file

@ -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)