We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The migration make the field nullable while the code uses blank=True. If you run makemigrations the following migrations is generated:
# -*- coding: utf-8 -*- # Generated by Django 1.11.7 on 2017-12-28 13:59 from __future__ import unicode_literals from django.db import migrations, models import silk.storage class Migration(migrations.Migration): dependencies = [ ('silk', '0005_increase_request_prof_file_length'), ] operations = [ migrations.AlterField( model_name='request', name='prof_file', field=models.FileField(blank=True, max_length=300, storage=silk.storage.ProfilerResultStorage(), upload_to=b''), ), ]
The text was updated successfully, but these errors were encountered:
fix migration for request.prof_file field
8938bdb
Ref jazzband#244
5ba0853
Ref #244
9ee3e36
922b174
Ref jazzband#244 (cherry picked from commit 5ba0853)
No branches or pull requests
The migration make the field nullable while the code uses blank=True. If you run makemigrations the following migrations is generated:
The text was updated successfully, but these errors were encountered: