Skip to content

Commit

Permalink
Merge pull request #17 from openimis/develop
Browse files Browse the repository at this point in the history
MERGING RELEASE branches
  • Loading branch information
delcroip committed Nov 10, 2022
2 parents e5a63de + 7ccab3a commit 7bf5af2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contribution/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ class Premium(core_models.VersionedModel):
pay_type = models.CharField(
db_column="PayType", max_length=1
) # , choices=PayTypeChoices.choices
is_photo_fee = models.NullBooleanField(
is_photo_fee = models.BooleanField(
db_column="isPhotoFee", blank=True, null=True, default=False
)
is_offline = models.NullBooleanField(
is_offline = models.BooleanField(
db_column="isOffline", blank=True, null=True, default=False
)
reporting_id = models.IntegerField(db_column="ReportingId", blank=True, null=True)
Expand Down

0 comments on commit 7bf5af2

Please sign in to comment.