30 lines
744 B
Python
30 lines
744 B
Python
# Generated by Django 3.2.13 on 2023-05-12 15:29
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = []
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="FeedbackResponse",
|
|
fields=[
|
|
(
|
|
"id",
|
|
models.BigAutoField(
|
|
auto_created=True,
|
|
primary_key=True,
|
|
serialize=False,
|
|
verbose_name="ID",
|
|
),
|
|
),
|
|
("data", models.JSONField(default=dict)),
|
|
("created_at", models.DateTimeField(auto_now_add=True)),
|
|
],
|
|
),
|
|
]
|