forked from raksha-life/rescuekerala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0058_auto_20180819_2137.py
29 lines (24 loc) · 1.4 KB
/
0058_auto_20180819_2137.py
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
# Generated by Django 2.1 on 2018-08-19 16:07
import django.core.validators
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('mainapp', '0057_add_status_to_relief_camp'),
]
operations = [
migrations.AlterField(
model_name='contributor',
name='phone',
field=models.CharField(max_length=11, validators=[django.core.validators.RegexValidator(code='invalid_mobile', message='Please Enter 10 digit mobile number', regex='^[6-9]\\d{9}$')], verbose_name='Phone - ഫോണ്\u200d നമ്പര്\u200d'),
),
migrations.AlterField(
model_name='request',
name='requestee_phone',
field=models.CharField(max_length=11, validators=[django.core.validators.RegexValidator(code='invalid_mobile', message='Please Enter 10/11 digit mobile number', regex='^[6-9]\\d{10}$')], verbose_name='Requestee Phone - അപേക്ഷകന്\u200dറെ ഫോണ്\u200d നമ്പര്\u200d'),
),
migrations.AlterField(
model_name='volunteer',
name='phone',
field=models.CharField(max_length=11, validators=[django.core.validators.RegexValidator(code='invalid_mobile', message='Please Enter 10 digit mobile number', regex='^[6-9]\\d{9}$')], verbose_name='Phone - ഫോണ്\u200d നമ്പര്\u200d'),
),
]