|
|
|
@ -1,4 +1,4 @@ |
|
|
|
# Generated by Django 2.0.1 on 2018-01-22 13:24 |
|
|
|
# Generated by Django 2.0.1 on 2018-01-24 09:37 |
|
|
|
|
|
|
|
from django.conf import settings |
|
|
|
import django.core.validators |
|
|
|
@ -12,8 +12,8 @@ class Migration(migrations.Migration): |
|
|
|
|
|
|
|
dependencies = [ |
|
|
|
('auth', '0009_alter_user_last_name_max_length'), |
|
|
|
('content', '0002_content_category'), |
|
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL), |
|
|
|
('content', '0001_initial'), |
|
|
|
] |
|
|
|
|
|
|
|
operations = [ |
|
|
|
@ -32,6 +32,7 @@ class Migration(migrations.Migration): |
|
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
|
|
|
('vote', models.IntegerField(validators=[django.core.validators.MaxValueValidator(5), django.core.validators.MinValueValidator(0)])), |
|
|
|
('content', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='content.Content')), |
|
|
|
('poll', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='vote.Poll')), |
|
|
|
('votant', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), |
|
|
|
], |
|
|
|
), |
|
|
|
|