You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
774 B
26 lines
774 B
# Generated by Django 4.0.8 on 2022-10-11 08:10
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('choose', '0003_teacategory_teatype_category'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Pic',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('href', models.CharField(max_length=512)),
|
|
],
|
|
),
|
|
migrations.AlterField(
|
|
model_name='tea',
|
|
name='pic',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='choose.pic'),
|
|
),
|
|
]
|
|
|