Skip to content

Commit

Permalink
Squash #1897 - participant_id updated to biginit
Browse files Browse the repository at this point in the history
  • Loading branch information
MackHalliday committed Aug 2, 2024
1 parent 0c4d82f commit e97ea0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -2181,7 +2181,7 @@ class VAProfileLocalCache(db.Model):
communication_channel_id = db.Column(db.Integer, nullable=False)
source_datetime = db.Column(db.DateTime, nullable=False)

participant_id = db.Column(db.Integer, nullable=True)
participant_id = db.Column(db.BigInteger, nullable=True)
has_duplicate_mappings = db.Column(db.Boolean, nullable=False, default=False)

__table_args__ = (
Expand Down

0 comments on commit e97ea0f

Please sign in to comment.