diff options
author | Sashi20 | 2019-09-20 10:12:33 +0530 |
---|---|---|
committer | Sashi20 | 2019-09-20 10:12:33 +0530 |
commit | 9925fde5d278278312a2be4458dc4cc675a3b88b (patch) | |
tree | a786d6a2dcb6a96769eb5607efa884f29f06d325 /website/migrations | |
parent | f193ddc4fae94202e1e37709fe964ecfb2bfcbe3 (diff) | |
download | SciPy2019-9925fde5d278278312a2be4458dc4cc675a3b88b.tar.gz SciPy2019-9925fde5d278278312a2be4458dc4cc675a3b88b.tar.bz2 SciPy2019-9925fde5d278278312a2be4458dc4cc675a3b88b.zip |
Add field to enable/disable registration details model
Diffstat (limited to 'website/migrations')
-rw-r--r-- | website/migrations/0003_auto_20190919_1231.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/website/migrations/0003_auto_20190919_1231.py b/website/migrations/0003_auto_20190919_1231.py new file mode 100644 index 0000000..47eeeb2 --- /dev/null +++ b/website/migrations/0003_auto_20190919_1231.py @@ -0,0 +1,23 @@ +# Generated by Django 2.2.4 on 2019-09-19 12:31 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('website', '0002_auto_20190917_0525'), + ] + + operations = [ + migrations.AddField( + model_name='registrationdetail', + name='display_registration_type', + field=models.BooleanField(default=True), + ), + migrations.AlterField( + model_name='registrationdetail', + name='registration_type', + field=models.TextField(blank=True, max_length=500, null=True), + ), + ] |