1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('invoices', '0005_vat'),
('confreg', '0004_timediff'),
]
operations = [
migrations.AddField(
model_name='conference',
name='vat_registrations',
field=models.ForeignKey(related_name='vat_registrations', verbose_name='VAT rate for registrations', blank=True, to='invoices.VatRate', null=True, on_delete=models.CASCADE),
),
migrations.AddField(
model_name='conference',
name='vat_sponsorship',
field=models.ForeignKey(related_name='vat_sponsorship', verbose_name='VAT rate for sponsorships', blank=True, to='invoices.VatRate', null=True, on_delete=models.CASCADE),
),
migrations.AlterField(
model_name='conferenceadditionaloption',
name='cost',
field=models.DecimalField(max_digits=10, decimal_places=2, default=0, help_text="Cost excluding VAT."),
),
migrations.AlterField(
model_name='discountcode',
name='discountamount',
field=models.DecimalField(max_digits=10, decimal_places=2, default=0, verbose_name="Discount amount"),
),
migrations.AlterField(
model_name='registrationtype',
name='cost',
field=models.DecimalField(max_digits=10, decimal_places=2, default=0, help_text="Cost excluding VAT."),
),
]
|