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.

31 lines
1008 B
Python

# Generated by Django 3.2.19 on 2023-05-25 08:07
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='MyModel',
fields=[
('uid', models.AutoField(primary_key=True, serialize=False)),
('video_hash', models.CharField(max_length=50)),
('record_time', models.DateTimeField()),
('police_id', models.CharField(max_length=50)),
('event_type', models.IntegerField()),
('is_violation', models.BooleanField()),
('small_image', models.CharField(max_length=50)),
('relative_time', models.IntegerField()),
('video_dir', models.CharField(max_length=50)),
('car_number', models.CharField(max_length=50)),
('ai_analysis', models.CharField(max_length=50)),
],
),
]