25 lines
745 B
Python
25 lines
745 B
Python
# Generated by Django 3.1.3 on 2021-02-04 22:59
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('generic', '0001_initial'),
|
|
('longs', '0003_long_condition'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='long',
|
|
name='site',
|
|
field=models.ManyToManyField(blank=True, default=1, help_text='If we know the source of the image', to='generic.Site'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='longcreationdefault',
|
|
name='site',
|
|
field=models.ManyToManyField(blank=True, default=1, help_text='Default site to use when creating a new long', to='generic.Site'),
|
|
),
|
|
]
|