snipt/teams/migrations/0009_auto_20160512_1058.py

33 lines
1.1 KiB
Python
Raw Normal View History

2016-05-12 08:47:07 -07:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
2019-01-23 15:52:55 -08:00
dependencies = [("teams", "0008_auto_20151018_2053")]
2016-05-12 08:47:07 -07:00
operations = [
migrations.AlterField(
2019-01-23 15:52:55 -08:00
model_name="team",
name="plan",
field=models.CharField(
max_length=100,
choices=[
("snipt-teams-25-monthly", "25 users, monthly"),
("snipt-teams-100-monthly", "100 users, monthly"),
("snipt-teams-250-monthly", "250 users, monthly"),
("snipt-teams-unlimited-monthly", "Unlimited users, monthly"),
("snipt-teams-25-yearly", "25 users, yearly"),
("snipt-teams-100-yearly", "100 users, yearly"),
("snipt-teams-250-yearly", "250 users, yearly"),
("snipt-teams-unlimited-yearly", "Unlimited users, yearly"),
],
blank=True,
null=True,
default="snipt-teams-25-monthly",
),
)
2016-05-12 08:47:07 -07:00
]