ready to deploy

This commit is contained in:
2025-03-24 20:41:08 -05:00
parent 6cb735491b
commit 766789b953
9 changed files with 258 additions and 29 deletions

View File

@@ -0,0 +1,50 @@
# Generated by Django 5.0 on 2025-03-25 01:32
import django.utils.timezone
import phonenumber_field.modelfields
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = []
operations = [
migrations.CreateModel(
name="Contact",
fields=[
(
"id",
models.BigAutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("created", models.DateTimeField(default=django.utils.timezone.now)),
(
"last_modified",
models.DateTimeField(default=django.utils.timezone.now),
),
("email", models.EmailField(max_length=128)),
("name", models.CharField(max_length=128)),
("contacted", models.BooleanField(default=False)),
(
"phone_number",
phonenumber_field.modelfields.PhoneNumberField(
max_length=128, region=None
),
),
("street", models.CharField(max_length=128)),
("zip_code", models.CharField(max_length=9)),
("state", models.CharField(max_length=25)),
("city", models.CharField(max_length=128)),
],
options={
"abstract": False,
},
),
]