medor.www
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

0026_offer.py
text/x-python

Download raw (654 bytes)

# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('subscribe', '0025_auto_20160922_0934'),
    ]

    operations = [
        migrations.CreateModel(
            name='Offer',
            fields=[
                ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
                ('name', models.CharField(max_length=255)),
                ('is_active', models.BooleanField(default=False)),
                ('body', models.TextField(blank=True)),
            ],
        ),
    ]