49 lines
2.0 KiB
Python
49 lines
2.0 KiB
Python
|
# Generated by Django 4.1.13 on 2024-02-24 04:47
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import uuid
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
initial = True
|
||
|
|
||
|
dependencies = [
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='auto_email_function_errors',
|
||
|
fields=[
|
||
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
||
|
('email', models.EmailField(blank=True, max_length=254, null=True)),
|
||
|
('error', models.TextField(blank=True, null=True)),
|
||
|
('email_code', models.CharField(blank=True, max_length=150, null=True)),
|
||
|
('key_value', models.TextField(blank=True, null=True)),
|
||
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
||
|
('updated_at', models.DateTimeField(auto_now=True)),
|
||
|
],
|
||
|
),
|
||
|
migrations.CreateModel(
|
||
|
name='emails_creadentials',
|
||
|
fields=[
|
||
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
||
|
('email', models.EmailField(blank=True, max_length=254, null=True)),
|
||
|
('password', models.CharField(blank=True, max_length=250, null=True)),
|
||
|
],
|
||
|
),
|
||
|
migrations.CreateModel(
|
||
|
name='Mnf_Notification',
|
||
|
fields=[
|
||
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
||
|
('user', models.CharField(max_length=100)),
|
||
|
('read', models.BooleanField(default=False)),
|
||
|
('title', models.CharField(blank=True, max_length=200, null=True)),
|
||
|
('service_name', models.CharField(blank=True, max_length=200, null=True)),
|
||
|
('image_url', models.CharField(blank=True, max_length=200, null=True)),
|
||
|
('created', models.DateTimeField(auto_now_add=True, null=True)),
|
||
|
('updated', models.DateTimeField(auto_now=True, null=True)),
|
||
|
],
|
||
|
),
|
||
|
]
|