dynamic-survey-app / home /migrations /0005_customerfeedback_description_customerfeedback_title.py
Nomi78600's picture
main
47cb610
raw
history blame contribute delete
635 Bytes
# Generated by Django 5.1 on 2024-09-21 10:27
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('home', '0004_rename_selected_options_customerresponse_selected_option_and_more'),
]
operations = [
migrations.AddField(
model_name='customerfeedback',
name='description',
field=models.TextField(blank=True, null=True),
),
migrations.AddField(
model_name='customerfeedback',
name='title',
field=models.CharField(default='Gernal Survey', max_length=255),
),
]