mirror of
https://github.com/MarcZierle/photo-log-backend.git
synced 2025-01-06 06:27:57 +00:00
21 lines
669 B
Python
21 lines
669 B
Python
# Generated by Django 3.2.8 on 2022-01-13 15:13
|
|
|
|
import django.contrib.postgres.fields
|
|
from django.db import migrations, models
|
|
import photo_log.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('photo_log', '0006_alter_photolog_slides'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='photolog',
|
|
name='slides',
|
|
field=django.contrib.postgres.fields.ArrayField(base_field=django.contrib.postgres.fields.ArrayField(base_field=models.IntegerField(null=True), blank=True, null=True, size=3), blank=True, default=photo_log.models.get_empty_photolog_default, size=None),
|
|
),
|
|
]
|