Skip to content

Commit

Permalink
Update initial migration for 807aa1e.
Browse files Browse the repository at this point in the history
  • Loading branch information
RoPP committed Oct 2, 2014
1 parent c3b4bb2 commit 4ad61a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions wagtail/wagtailimages/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ class Migration(migrations.Migration):
('width', models.IntegerField(editable=False)),
('height', models.IntegerField(editable=False)),
('created_at', models.DateTimeField(auto_now_add=True)),
('focal_point_x', models.PositiveIntegerField(editable=False, null=True)),
('focal_point_y', models.PositiveIntegerField(editable=False, null=True)),
('focal_point_width', models.PositiveIntegerField(editable=False, null=True)),
('focal_point_height', models.PositiveIntegerField(editable=False, null=True)),
('focal_point_x', models.PositiveIntegerField(null=True, blank=True)),
('focal_point_y', models.PositiveIntegerField(null=True, blank=True)),
('focal_point_width', models.PositiveIntegerField(null=True, blank=True)),
('focal_point_height', models.PositiveIntegerField(null=True, blank=True)),
('tags', taggit.managers.TaggableManager(verbose_name='Tags', blank=True, help_text=None, to='taggit.Tag', through='taggit.TaggedItem')),
('uploaded_by_user', models.ForeignKey(editable=False, blank=True, null=True, to=settings.AUTH_USER_MODEL)),
],
Expand Down

0 comments on commit 4ad61a3

Please sign in to comment.