26 lines
685 B
Python
26 lines
685 B
Python
# Generated by Django 2.1.7 on 2019-03-03 18:43
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('map', '0008_auto_20190303_1834'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='locationsharinggroup',
|
|
name='friends',
|
|
),
|
|
migrations.AddField(
|
|
model_name='friend',
|
|
name='shares_location_to',
|
|
field=models.ManyToManyField(related_name='is_shared_location_by', to=settings.AUTH_USER_MODEL),
|
|
),
|
|
migrations.DeleteModel(
|
|
name='LocationSharingGroup',
|
|
),
|
|
]
|