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.
19 lines
471 B
Python
19 lines
471 B
Python
4 years ago
|
# Generated by Django 3.1.6 on 2021-02-16 04:33
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('wishlist', '0002_auto_20210216_0430'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='wisheditem',
|
||
|
name='description',
|
||
|
field=models.TextField(blank=True, help_text='Detailed description of the item, for example its specification.'),
|
||
|
),
|
||
|
]
|