remove and recreate migration
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# Generated by Django 5.2 on 2025-07-15 15:36
|
||||
# Generated by Django 5.2 on 2025-11-28 15:37
|
||||
|
||||
import uuid
|
||||
from django.db import migrations, models
|
||||
@@ -12,6 +12,19 @@ class Migration(migrations.Migration):
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='ContactUs',
|
||||
fields=[
|
||||
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False, unique=True)),
|
||||
('created_at', models.DateTimeField(auto_now_add=True)),
|
||||
('updated_at', models.DateTimeField(auto_now=True)),
|
||||
('phone_number', models.CharField(max_length=20)),
|
||||
('telegram_url', models.URLField()),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
},
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='Folder',
|
||||
fields=[
|
||||
|
||||
Reference in New Issue
Block a user