forked from kongfp/TP_Admin
31
0
Fork 1
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TP_API/app/migrations/0002_auto_20230526_1003.py

24 lines
528 B
Python

2 years ago
# Generated by Django 3.2.19 on 2023-05-26 10:03
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('app', '0001_initial'),
2 years ago
]
operations = [
migrations.AlterField(
model_name='mymodel',
name='ai_analysis',
field=models.CharField(max_length=255),
),
migrations.AlterField(
model_name='mymodel',
name='relative_time',
field=models.FloatField(),
),
]