Skip to content

Commit

Permalink
update migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
arminpatel committed Apr 17, 2024
1 parent 47239ca commit 625a4e0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions backend/events/migrations/0002_alter_event_description.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2 on 2024-04-17 13:27

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('events', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='event',
name='description',
field=models.TextField(blank=True, max_length=3000),
),
]

0 comments on commit 625a4e0

Please sign in to comment.