Skip to content

Commit

Permalink
DBC22-2879: removed limit on text field
Browse files Browse the repository at this point in the history
  • Loading branch information
ray-oxd committed Jan 13, 2025
1 parent 0fb7bee commit 439a3fd
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.16 on 2025-01-13 19:47

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('ferry', '0002_ferry_contact_email_ferry_contact_url_1_and_more'),
]

operations = [
migrations.AlterField(
model_name='ferry',
name='schedule_detail',
field=models.TextField(blank=True, default=''),
),
]
2 changes: 1 addition & 1 deletion src/backend/apps/ferry/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Ferry(BaseModel):

# Schedule
schedule_type = models.CharField(max_length=64, blank=True, default='')
schedule_detail = models.CharField(max_length=750, blank=True, default='')
schedule_detail = models.TextField(blank=True, default='')
special_restriction = models.CharField(max_length=750, blank=True, default='')

# Contacts
Expand Down

0 comments on commit 439a3fd

Please sign in to comment.