Skip to content

Commit

Permalink
feat(models): remove merchant_id from transitagency model
Browse files Browse the repository at this point in the history
  • Loading branch information
machikoyasuda committed Jul 10, 2024
1 parent a1d718c commit 8ee36a8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
17 changes: 17 additions & 0 deletions benefits/core/migrations/0012_remove_transitagency_merchant_id.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 5.0.6 on 2024-07-10 23:27

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("core", "0011_move_enrollment_success_template_field"),
]

operations = [
migrations.RemoveField(
model_name="transitagency",
name="merchant_id",
),
]
1 change: 0 additions & 1 deletion benefits/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,6 @@ class TransitAgency(models.Model):
short_name = models.TextField()
long_name = models.TextField()
agency_id = models.TextField()
merchant_id = models.TextField()
info_url = models.URLField()
phone = models.TextField()
active = models.BooleanField(default=False)
Expand Down

0 comments on commit 8ee36a8

Please sign in to comment.