28 lines
813 B
Python
28 lines
813 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.9.4 on 2016-04-10 17:04
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
initial = True
|
||
|
|
||
|
dependencies = [
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='ContactMessage',
|
||
|
fields=[
|
||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('name', models.CharField(max_length=200)),
|
||
|
('email', models.EmailField(max_length=254)),
|
||
|
('phone_number', models.CharField(max_length=200)),
|
||
|
('message', models.TextField()),
|
||
|
('received_date', models.DateTimeField(auto_now_add=True)),
|
||
|
],
|
||
|
),
|
||
|
]
|