mirror of
https://github.com/rjNemo/villafleurie
synced 2026-06-06 02:16:47 +00:00
24 lines
766 B
Python
24 lines
766 B
Python
# Generated by Django 3.0.4 on 2020-03-28 07:57
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('rental', '0027_auto_20191209_1831'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Contact',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=50)),
|
|
('email', models.EmailField(max_length=50)),
|
|
('subject', models.EmailField(max_length=50)),
|
|
('message', models.TextField(max_length=50)),
|
|
('date', models.DateTimeField(auto_now_add=True)),
|
|
],
|
|
),
|
|
]
|