Commit 882b79d3 authored by Michal Čihař's avatar Michal Čihař

Add forgotten migration

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 484c7f4f
# -*- coding: utf-8 -*-
# Generated by Django 1.9.2 on 2016-02-10 14:07
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('billing', '0009_remove_billing_trial'),
]
operations = [
migrations.AlterField(
model_name='invoice',
name='currency',
field=models.IntegerField(choices=[(0, 'EUR'), (1, 'mBTC')], default=1),
),
migrations.AlterField(
model_name='invoice',
name='payment',
field=models.FloatField(),
),
]
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment