24 lines
628 B
Python
24 lines
628 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.2 on 2019-07-20 01:53
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('help', '0008_auto_20190718_2223'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='EmailTemplate',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=50)),
|
|
('body', models.TextField()),
|
|
],
|
|
),
|
|
]
|