27 lines
828 B
Python
27 lines
828 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.3 on 2017-01-27 11:54
|
|
from __future__ import unicode_literals
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('contest', '0015_auto_20170126_2016'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='qso',
|
|
name='reportRX',
|
|
field=models.CharField(default=59, max_length=7, validators=[django.core.validators.RegexValidator('[1-5][1-9]')], verbose_name='RS-R'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='qso',
|
|
name='reportTX',
|
|
field=models.CharField(default=59, max_length=7, validators=[django.core.validators.RegexValidator('[1-5][1-9]')], verbose_name='RS-S'),
|
|
),
|
|
]
|