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 1, 2023
1 parent e033677 commit 376944f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions physionet-django/events/migrations/0007_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-02-28 20:41

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


class Migration(migrations.Migration):

dependencies = [
('events', '0006_eventagreement_eventagreementsignature'),
]

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

0 comments on commit 376944f

Please sign in to comment.