diff options
author | Sashi20 | 2020-03-06 14:39:16 +0530 |
---|---|---|
committer | Sashi20 | 2020-03-06 14:39:16 +0530 |
commit | 903b73b033c9b80db36da755e05185d4f266101c (patch) | |
tree | 94d3cf22c8c872b960f7bd252d9837f97db5fe52 /arduino_blog/migrations | |
parent | f3b005d44de92e6872a0f9824f5d20cc9e636f34 (diff) | |
download | arduino_projects_website-903b73b033c9b80db36da755e05185d4f266101c.tar.gz arduino_projects_website-903b73b033c9b80db36da755e05185d4f266101c.tar.bz2 arduino_projects_website-903b73b033c9b80db36da755e05185d4f266101c.zip |
Add view abstracts, comment abstract
Diffstat (limited to 'arduino_blog/migrations')
-rw-r--r-- | arduino_blog/migrations/0007_auto_20200305_1009.py | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/arduino_blog/migrations/0007_auto_20200305_1009.py b/arduino_blog/migrations/0007_auto_20200305_1009.py new file mode 100644 index 0000000..cdb6629 --- /dev/null +++ b/arduino_blog/migrations/0007_auto_20200305_1009.py @@ -0,0 +1,51 @@ +# Generated by Django 3.0.3 on 2020-03-05 10:09 + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('contenttypes', '0002_remove_content_type_name'), + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ('arduino_blog', '0006_remove_proposal_attachment'), + ] + + operations = [ + migrations.RemoveField( + model_name='profile', + name='phone', + ), + migrations.RemoveField( + model_name='profile', + name='title', + ), + migrations.AddField( + model_name='proposal', + name='references', + field=models.CharField(default='None', max_length=200), + ), + migrations.AlterField( + model_name='proposal', + name='terms_and_conditions', + field=models.BooleanField(default=True), + ), + migrations.CreateModel( + name='Comment', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('date_created', models.DateTimeField(auto_now_add=True)), + ('date_modified', models.DateTimeField(auto_now=True)), + ('body', models.CharField(max_length=500)), + ('is_public', models.BooleanField(default=False)), + ('object_id', models.PositiveIntegerField()), + ('content_type', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='contenttypes.ContentType')), + ('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), + ], + options={ + 'abstract': False, + }, + ), + ] |