19 lines
458 B
Python
19 lines
458 B
Python
# Generated by Django 2.1.5 on 2019-06-16 17:03
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('safesite', '0204_auto_20190616_1702'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='observe',
|
|
name='reads',
|
|
field=models.ManyToManyField(related_name='observetouser', through='safesite.Observeto', to='safesite.User'),
|
|
),
|
|
]
|