28 lines
684 B
Python
28 lines
684 B
Python
|
# Generated by Django 4.2.6 on 2023-11-19 19:37
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
initial = True
|
||
|
|
||
|
dependencies = []
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name="DetectImage",
|
||
|
fields=[
|
||
|
(
|
||
|
"id",
|
||
|
models.BigAutoField(
|
||
|
auto_created=True,
|
||
|
primary_key=True,
|
||
|
serialize=False,
|
||
|
verbose_name="ID",
|
||
|
),
|
||
|
),
|
||
|
("image", models.ImageField(upload_to="plankton/%Y/%m/%d/")),
|
||
|
],
|
||
|
),
|
||
|
]
|