Skip to content
Snippets Groups Projects
Verified Commit f6e9cd68 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Add migrations for the change from User to Person model in dashboard models

parent 19a46bc6
No related branches found
No related tags found
1 merge request!98Link activities and notifications to persons
Pipeline #546 failed
# Generated by Django 3.0.2 on 2020-01-05 18:32
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('core', '0002_activity_notification'),
]
operations = [
migrations.AlterField(
model_name='activity',
name='user',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='activities', to='core.Person'),
),
migrations.AlterField(
model_name='notification',
name='user',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='notifications', to='core.Person'),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment