mirror of
https://github.com/MarcZierle/photo-log-backend.git
synced 2025-01-07 14:57:58 +00:00
19 lines
412 B
Python
19 lines
412 B
Python
|
# Generated by Django 3.2.8 on 2022-01-22 11:36
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('photo_log', '0010_photo_bbox_coords'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='photo',
|
||
|
name='ocr_text',
|
||
|
field=models.CharField(blank=True, max_length=200, null=True),
|
||
|
),
|
||
|
]
|