diff options
author | Akshen | 2018-10-12 11:02:31 +0530 |
---|---|---|
committer | Akshen | 2018-10-12 11:02:31 +0530 |
commit | 4ef74219b292acaaab56f34f46791f53bdcd5958 (patch) | |
tree | 07d7e522ef2e8510253de5622a07c9bf5f798cff | |
parent | b7a9ed69460d1843bb6be3721ae494ccccfdbf7c (diff) | |
download | nccps-2018-4ef74219b292acaaab56f34f46791f53bdcd5958.tar.gz nccps-2018-4ef74219b292acaaab56f34f46791f53bdcd5958.tar.bz2 nccps-2018-4ef74219b292acaaab56f34f46791f53bdcd5958.zip |
Updated
- Model Admin Update
-rw-r--r-- | website/migrations/0004_auto_20181004_1022.py | 45 | ||||
-rw-r--r-- | website/migrations/0005_auto_20181005_0408.py | 23 | ||||
-rw-r--r-- | website/migrations/0006_auto_20181005_0412.py | 18 | ||||
-rw-r--r-- | website/migrations/0007_question_question_creation_day.py | 18 | ||||
-rw-r--r-- | website/migrations/0008_auto_20181005_0535.py | 18 | ||||
-rw-r--r-- | website/migrations/0009_auto_20181005_0538.py | 22 | ||||
-rw-r--r-- | website/migrations/0010_auto_20181005_0544.py | 22 | ||||
-rw-r--r-- | website/migrations/0011_auto_20181008_1039.py | 18 |
8 files changed, 184 insertions, 0 deletions
diff --git a/website/migrations/0004_auto_20181004_1022.py b/website/migrations/0004_auto_20181004_1022.py new file mode 100644 index 0000000..51067a7 --- /dev/null +++ b/website/migrations/0004_auto_20181004_1022.py @@ -0,0 +1,45 @@ +# Generated by Django 2.1 on 2018-10-04 10:22 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('website', '0003_auto_20180919_1026'), + ] + + operations = [ + migrations.CreateModel( + name='AnswerPaper', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('validate_ans', models.BooleanField()), + ('attempted', models.BooleanField()), + ('date', models.DateTimeField(auto_now=True)), + ], + ), + migrations.CreateModel( + name='Question', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('question', models.TextField()), + ('option_1', models.CharField(max_length=255)), + ('option_2', models.CharField(max_length=255)), + ('option_3', models.CharField(max_length=255)), + ('option_4', models.CharField(max_length=255)), + ('correct_answer', models.CharField(max_length=255)), + ], + ), + migrations.AddField( + model_name='answerpaper', + name='answered_q', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='website.Question'), + ), + migrations.AddField( + model_name='answerpaper', + name='participant', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='website.Profile'), + ), + ] diff --git a/website/migrations/0005_auto_20181005_0408.py b/website/migrations/0005_auto_20181005_0408.py new file mode 100644 index 0000000..04b52ef --- /dev/null +++ b/website/migrations/0005_auto_20181005_0408.py @@ -0,0 +1,23 @@ +# Generated by Django 2.1 on 2018-10-05 04:08 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('website', '0004_auto_20181004_1022'), + ] + + operations = [ + migrations.AddField( + model_name='question', + name='question_day', + field=models.DateField(null=True), + ), + migrations.AlterField( + model_name='question', + name='correct_answer', + field=models.CharField(help_text='please write it as written in the option above(CAPS applicable)', max_length=255), + ), + ] diff --git a/website/migrations/0006_auto_20181005_0412.py b/website/migrations/0006_auto_20181005_0412.py new file mode 100644 index 0000000..e2e9dd9 --- /dev/null +++ b/website/migrations/0006_auto_20181005_0412.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1 on 2018-10-05 04:12 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('website', '0005_auto_20181005_0408'), + ] + + operations = [ + migrations.AlterField( + model_name='question', + name='question_day', + field=models.DateField(), + ), + ] diff --git a/website/migrations/0007_question_question_creation_day.py b/website/migrations/0007_question_question_creation_day.py new file mode 100644 index 0000000..4dd8e82 --- /dev/null +++ b/website/migrations/0007_question_question_creation_day.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1 on 2018-10-05 04:26 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('website', '0006_auto_20181005_0412'), + ] + + operations = [ + migrations.AddField( + model_name='question', + name='question_creation_day', + field=models.DateField(auto_now=True), + ), + ] diff --git a/website/migrations/0008_auto_20181005_0535.py b/website/migrations/0008_auto_20181005_0535.py new file mode 100644 index 0000000..a24b0b3 --- /dev/null +++ b/website/migrations/0008_auto_20181005_0535.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1 on 2018-10-05 05:35 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('website', '0007_question_question_creation_day'), + ] + + operations = [ + migrations.AlterField( + model_name='question', + name='question_day', + field=models.DateField(auto_now=True), + ), + ] diff --git a/website/migrations/0009_auto_20181005_0538.py b/website/migrations/0009_auto_20181005_0538.py new file mode 100644 index 0000000..c1709d2 --- /dev/null +++ b/website/migrations/0009_auto_20181005_0538.py @@ -0,0 +1,22 @@ +# Generated by Django 2.1 on 2018-10-05 05:38 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('website', '0008_auto_20181005_0535'), + ] + + operations = [ + migrations.RemoveField( + model_name='question', + name='question_creation_day', + ), + migrations.AlterField( + model_name='question', + name='question_day', + field=models.DateField(), + ), + ] diff --git a/website/migrations/0010_auto_20181005_0544.py b/website/migrations/0010_auto_20181005_0544.py new file mode 100644 index 0000000..679f9dd --- /dev/null +++ b/website/migrations/0010_auto_20181005_0544.py @@ -0,0 +1,22 @@ +# Generated by Django 2.1 on 2018-10-05 05:44 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('website', '0009_auto_20181005_0538'), + ] + + operations = [ + migrations.RemoveField( + model_name='answerpaper', + name='attempted', + ), + migrations.AlterField( + model_name='question', + name='question_day', + field=models.DateField(help_text='Please follow the format YYYY-MM-DD as it is!'), + ), + ] diff --git a/website/migrations/0011_auto_20181008_1039.py b/website/migrations/0011_auto_20181008_1039.py new file mode 100644 index 0000000..8abca98 --- /dev/null +++ b/website/migrations/0011_auto_20181008_1039.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1 on 2018-10-08 10:39 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('website', '0010_auto_20181005_0544'), + ] + + operations = [ + migrations.AlterField( + model_name='question', + name='question_day', + field=models.DateField(), + ), + ] |