diff options
author | Sashi20 | 2019-09-17 10:58:04 +0530 |
---|---|---|
committer | Sashi20 | 2019-09-17 10:58:04 +0530 |
commit | b8ec4fb70254d26a88f3856648399bf68dfb2921 (patch) | |
tree | 13cbc683a18034d52cb47d6ab8051d401cecb088 /website/migrations/0002_auto_20190917_0525.py | |
parent | 2a5e987aea9960d909ddb476ccd5f95da414b501 (diff) | |
download | SciPy2019-b8ec4fb70254d26a88f3856648399bf68dfb2921.tar.gz SciPy2019-b8ec4fb70254d26a88f3856648399bf68dfb2921.tar.bz2 SciPy2019-b8ec4fb70254d26a88f3856648399bf68dfb2921.zip |
Modify the text for about us and increase the maximum length for registration description
Diffstat (limited to 'website/migrations/0002_auto_20190917_0525.py')
-rw-r--r-- | website/migrations/0002_auto_20190917_0525.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/website/migrations/0002_auto_20190917_0525.py b/website/migrations/0002_auto_20190917_0525.py new file mode 100644 index 0000000..7f89535 --- /dev/null +++ b/website/migrations/0002_auto_20190917_0525.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.4 on 2019-09-17 05:25 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('website', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='registrationdetail', + name='registration_description', + field=models.TextField(blank=True, max_length=500, null=True), + ), + ] |