-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path0007_auto_20230630_1414.py
More file actions
30 lines (25 loc) · 943 Bytes
/
0007_auto_20230630_1414.py
File metadata and controls
30 lines (25 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Generated by Django 3.1.7 on 2023-06-30 14:14
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('openapi', '0006_auto_20210321_1802'),
]
operations = [
migrations.AddField(
model_name='document',
name='editors',
field=models.ManyToManyField(blank=True, default=None, related_name='editors', to=settings.AUTH_USER_MODEL),
),
migrations.AlterField(
model_name='document',
name='created',
field=models.DateTimeField(auto_now_add=True, verbose_name='date published'),
),
migrations.AlterField(
model_name='document',
name='modified',
field=models.DateTimeField(auto_now=True, verbose_name='date modified'),
),
]