Skip to content

Commit

Permalink
Added language id in Registration table model
Browse files Browse the repository at this point in the history
  • Loading branch information
Sachinbisht27 committed Jan 11, 2024
1 parent 7e76974 commit 5b61e1e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions api/models/registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class Registration(TimestampMixin, db.Model):
user_id = db.Column(db.Integer, db.ForeignKey("user.id"))
partner_id = db.Column(db.Integer, db.ForeignKey("partner.id"))
program_id = db.Column(db.Integer, db.ForeignKey("program.id"))
language_id = db.Column(db.Integer)
district = db.Column(db.String(100), nullable=True)
state = db.Column(db.String(100), nullable=True)
parent_type = db.Column(db.String(100), nullable=True)
Expand Down

0 comments on commit 5b61e1e

Please sign in to comment.