forked from willseward/django-custom-field
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Maffooch
authored and
Maffooch
committed
Jun 11, 2019
1 parent
69929e4
commit 4e095dd
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Generated by Django 2.2.1 on 2019-06-11 13:35 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('custom_field', '0003_customfield_mask'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='customfield', | ||
name='default_value', | ||
field=models.CharField(blank=True, help_text='You may leave blank. For Boolean use True or False', max_length=5000), | ||
), | ||
migrations.AlterField( | ||
model_name='customfield', | ||
name='field_choices', | ||
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), | ||
), | ||
migrations.AlterField( | ||
model_name='customfield', | ||
name='field_type', | ||
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), | ||
), | ||
migrations.AlterField( | ||
model_name='customfield', | ||
name='mask', | ||
field=models.CharField(blank=True, help_text="You may leave blank. For user Jquery Mask, ex: '00/00/0000' for date.", max_length=5000), | ||
), | ||
] |