blob: a56910eb67837fe1e627ab31cc88a8b041010345 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('confreg', '0002_auto_20160108_1924'),
]
operations = [
migrations.AlterField(
model_name='discountcode',
name='requiresregtype',
field=models.ManyToManyField(help_text='Require a specific registration type to be valid', to='confreg.RegistrationType', blank=True, verbose_name="Requires registration type"),
),
]
|