add in a free tier (bug 735132)

This commit is contained in:
Andy McKay 2012-04-12 09:25:35 -07:00
Родитель c954588c38
Коммит 6a20870ea0
1 изменённых файлов: 11 добавлений и 0 удалений

11
migrations/366-tier-0.py Normal file
Просмотреть файл

@ -0,0 +1,11 @@
from decimal import Decimal
from market.models import Price, PriceCurrency
def run():
tier = Price.objects.create(name='Tier 0', price=Decimal('0'),
active=True)
for currency in ['CAD', 'EUR', 'GBP', 'JPY']:
PriceCurrency.objects.create(tier=tier, price=Decimal('0'),
currency=currency)