blob: 297931ef7fddeb7b2f4081a49772beaba96d583b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Generated by Django 2.2.9 on 2020-02-20 16:34
import ctrack.organisations.models
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('organisations', '0003_auto_20200220_1625'),
]
operations = [
migrations.AlterField(
model_name='person',
name='updated_by',
field=models.ForeignKey(on_delete=models.SET(ctrack.organisations.models.Person.get_sentinel_user), to=settings.AUTH_USER_MODEL),
),
]
|