Commit ca92a747 authored by Michal Čihař's avatar Michal Čihař

Default to EUR

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent e8ce8c56
# -*- coding: utf-8 -*-
# Generated by Django 1.9.2 on 2016-02-10 15:22
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('billing', '0010_auto_20160210_1407'),
]
operations = [
migrations.AlterField(
model_name='invoice',
name='currency',
field=models.IntegerField(choices=[(0, 'EUR'), (1, 'mBTC')], default=0),
),
]
......@@ -156,7 +156,7 @@ class Invoice(models.Model):
(CURRENCY_EUR, 'EUR'),
(CURRENCY_BTC, 'mBTC'),
),
default=CURRENCY_BTC
default=CURRENCY_EUR,
)
ref = models.CharField(blank=True, max_length=50)
note = models.TextField(blank=True)
......
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