21 lines
639 B
Python
21 lines
639 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.9.2 on 2016-08-22 00:34
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('registrasion', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='category',
|
||
|
name='render_type',
|
||
|
field=models.IntegerField(choices=[(1, 'Radio button'), (2, 'Quantity boxes'), (3, 'Product selector and quantity box')], help_text='The registration form will render this category in this style.', verbose_name='Render type'),
|
||
|
),
|
||
|
]
|