19 lines
497 B
Python
19 lines
497 B
Python
# Generated by Django 2.1.7 on 2019-03-03 18:55
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('map', '0009_auto_20190303_1943'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='friend',
|
|
name='shares_location_to',
|
|
field=models.ManyToManyField(blank=True, related_name='is_shared_location_by', to=settings.AUTH_USER_MODEL),
|
|
),
|
|
]
|