zulip/zilencer/migrations/0009_plan.py

26 lines
721 B
Python
Raw Normal View History

2018-03-31 04:13:44 +02:00
# Generated by Django 1.11.11 on 2018-04-12 01:19
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zilencer", "0008_customer_billing_user"),
2018-03-31 04:13:44 +02:00
]
operations = [
migrations.CreateModel(
name="Plan",
2018-03-31 04:13:44 +02:00
fields=[
(
"id",
models.AutoField(
auto_created=True, primary_key=True, serialize=False, verbose_name="ID"
),
),
("nickname", models.CharField(max_length=40, unique=True)),
("stripe_plan_id", models.CharField(max_length=255, unique=True)),
2018-03-31 04:13:44 +02:00
],
),
]