blob: 39d4fd9e9dd57a882b604eeb665e42e9e9b6d25f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Generated by Django 3.1 on 2020-12-01 21:16
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('locations', '0028_auto_20200308_1152'),
('photos', '0019_auto_20190704_0903'),
]
operations = [
migrations.AlterField(
model_name='luximage',
name='location',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='+', to='locations.location'),
),
]
|