mirror of
https://github.com/MarcZierle/photo-log-backend.git
synced 2025-01-07 14:57:58 +00:00
19 lines
396 B
Python
19 lines
396 B
Python
|
# Generated by Django 3.2.8 on 2022-05-03 14:59
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('photo_log', '0011_alter_photo_ocr_text'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='photo',
|
||
|
name='rotate',
|
||
|
field=models.FloatField(blank=True, null=True),
|
||
|
),
|
||
|
]
|