Skip to content

Commit 4e095dd

Browse files
MaffoochMaffooch
authored andcommitted
Add new migrations file
1 parent 69929e4 commit 4e095dd

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Generated by Django 2.2.1 on 2019-06-11 13:35
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('custom_field', '0003_customfield_mask'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='customfield',
15+
name='default_value',
16+
field=models.CharField(blank=True, help_text='You may leave blank. For Boolean use True or False', max_length=5000),
17+
),
18+
migrations.AlterField(
19+
model_name='customfield',
20+
name='field_choices',
21+
field=models.CharField(blank=True, help_text='List the choices you want displayed, seperated by commas. This is only valid for Dropdown, Multiple, and Checkbox field types', max_length=2000),
22+
),
23+
migrations.AlterField(
24+
model_name='customfield',
25+
name='field_type',
26+
field=models.CharField(choices=[('t', 'Text'), ('a', 'Large Text Field'), ('i', 'Integer'), ('f', 'Floating point decimal'), ('b', 'Boolean (Yes/No)'), ('m', 'Dropdown Choices'), ('d', 'Date'), ('h', 'Date Time')], default='t', max_length=1),
27+
),
28+
migrations.AlterField(
29+
model_name='customfield',
30+
name='mask',
31+
field=models.CharField(blank=True, help_text="You may leave blank. For user Jquery Mask, ex: '00/00/0000' for date.", max_length=5000),
32+
),
33+
]

0 commit comments

Comments
 (0)