forked from kongfp/TP_Admin
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.
24 lines
538 B
Python
24 lines
538 B
Python
# Generated by Django 3.2.19 on 2023-05-31 10:32
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('app', '0003_auto_20230529_1446'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='tp',
|
|
name='small_image',
|
|
field=models.CharField(max_length=100),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='tp',
|
|
name='video_dir',
|
|
field=models.CharField(max_length=100),
|
|
),
|
|
]
|