Skip to content

Commit

Permalink
chore: add meta to service request
Browse files Browse the repository at this point in the history
Signed-off-by: maxwellgithinji <maxwellgithinji@gmail.com>
  • Loading branch information
maxwellgithinji committed Mar 19, 2022
1 parent c3d81c5 commit 239bb30
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions mycarehub/clients/migrations/0029_auto_20220319_0842.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 3.2.11 on 2022-03-19 05:42

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('clients', '0028_servicerequest_ccc_number'),
]

operations = [
migrations.RemoveField(
model_name='servicerequest',
name='ccc_number',
),
migrations.AddField(
model_name='servicerequest',
name='meta',
field=models.JSONField(blank=True, null=True),
),
]
2 changes: 1 addition & 1 deletion mycarehub/clients/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,4 +443,4 @@ class ServiceRequestStatus(models.TextChoices):
resolved_at = models.DateTimeField(null=True, blank=True)

facility = models.ForeignKey(Facility, null=True, blank=True, on_delete=models.SET_NULL)
ccc_number = models.CharField(max_length=36, null=True, blank=True)
meta = models.JSONField(null=True, blank=True)

0 comments on commit 239bb30

Please sign in to comment.