Skip to content

Commit

Permalink
add migration file
Browse files Browse the repository at this point in the history
  • Loading branch information
superryeti committed Mar 15, 2023
1 parent 7c7b9b3 commit 9899c28
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions physionet-django/events/migrations/0009_event_event_agreement.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 3.2.16 on 2023-03-15 17:03

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

dependencies = [
('events', '0008_alter_event_description'),
]

operations = [
migrations.AddField(
model_name='event',
name='event_agreement',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL,
to='events.eventagreement'),
),
]

0 comments on commit 9899c28

Please sign in to comment.