Skip to content

Commit

Permalink
Add events hash migration file
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelmdLow committed Aug 27, 2024
1 parent 906a97f commit 8283676
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions events/migrations/0004_event_hash.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2 on 2024-08-27 09:36

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('events', '0003_alter_event_description_alter_event_title'),
]

operations = [
migrations.AddField(
model_name='event',
name='hash',
field=models.CharField(default='', max_length=50, null=True),
),
]

0 comments on commit 8283676

Please sign in to comment.