mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2024-11-14 21:46:35 +03:00
43 lines
1.3 KiB
Python
43 lines
1.3 KiB
Python
import django.contrib.sites.models
|
|
from django.contrib.sites.models import _simple_domain_name_validator
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = []
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="Site",
|
|
fields=[
|
|
(
|
|
"id",
|
|
models.AutoField(
|
|
verbose_name="ID",
|
|
serialize=False,
|
|
auto_created=True,
|
|
primary_key=True,
|
|
),
|
|
),
|
|
(
|
|
"domain",
|
|
models.CharField(
|
|
max_length=100,
|
|
verbose_name="domain name",
|
|
validators=[_simple_domain_name_validator],
|
|
),
|
|
),
|
|
("name", models.CharField(max_length=50, verbose_name="display name")),
|
|
],
|
|
options={
|
|
"ordering": ("domain",),
|
|
"db_table": "django_site",
|
|
"verbose_name": "site",
|
|
"verbose_name_plural": "sites",
|
|
},
|
|
bases=(models.Model,),
|
|
managers=[("objects", django.contrib.sites.models.SiteManager())],
|
|
)
|
|
]
|