Skip to content

Commit

Permalink
* Update the migrations to use the new values for max_length in the u…
Browse files Browse the repository at this point in the history
…rl fields.
  • Loading branch information
bgroff committed Apr 15, 2017
1 parent 225531d commit 32d3058
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion django_kala/accounts/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class Migration(migrations.Migration):
('ext', models.CharField(blank=True, max_length=10, null=True)),
('last_updated', models.DateTimeField(auto_now=True)),
('removed', models.DateField(null=True)),
('avatar_url', models.URLField()),
('avatar_url', models.URLField(max_length=1200)),
('companies', models.ManyToManyField(to='companies.Company')),
('groups', models.ManyToManyField(blank=True, help_text='The groups this user belongs to. A user will get all permissions granted to each of their groups.', related_name='user_set', related_query_name='user', to='auth.Group', verbose_name='groups')),
('user_permissions', models.ManyToManyField(blank=True, help_text='Specific permissions for this user.', related_name='user_set', related_query_name='user', to='auth.Permission', verbose_name='user permissions')),
Expand Down
2 changes: 1 addition & 1 deletion django_kala/documents/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Migration(migrations.Migration):
fields=[
('uuid', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
('file', models.FileField(null=True, upload_to='')),
('url', models.URLField()),
('url', models.URLField(max_length=3000)),
('size', models.IntegerField()),
('description', models.TextField(null=True)),
('created', models.DateTimeField()),
Expand Down

0 comments on commit 32d3058

Please sign in to comment.