snipt/teams/migrations/0006_team_plan.py

31 lines
1.1 KiB
Python
Raw Permalink Normal View History

2015-10-15 19:37:54 -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", "0005_auto_20150930_2124")]
2015-10-15 19:37:54 -07:00
operations = [
migrations.AddField(
2019-01-23 15:52:55 -08:00
model_name="team",
name="plan",
field=models.CharField(
default=b"snipt-teams-25-monthly",
max_length=100,
choices=[
(b"snipt-teams-25-monthly", b"25 users, monthly"),
(b"snipt-teams-100-monthly", b"100 users, monthly"),
(b"snipt-teams-250-monthly", b"250 users, monthly"),
(b"snipt-teams-unlimited-monthly", b"Unlimited users, monthly"),
(b"snipt-teams-25-yearly", b"25 users, yearly"),
(b"snipt-teams-100-yearly", b"100 users, yearly"),
(b"snipt-teams-250-yearly", b"250 users, yearly"),
(b"snipt-teams-unlimited-yearly", b"Unlimited users, yearly"),
],
),
)
2015-10-15 19:37:54 -07:00
]