Merge lp:~dholbach/developer-ubuntu-com/gadget-snap-fix into lp:~developer-ubuntu-com-dev/developer-ubuntu-com/get-gadget-snaps

Proposed by Daniel Holbach
Status: Rejected
Rejected by: David Callé
Proposed branch: lp:~dholbach/developer-ubuntu-com/gadget-snap-fix
Merge into: lp:~developer-ubuntu-com-dev/developer-ubuntu-com/get-gadget-snaps
Diff against target: 23 lines (+19/-0)
1 file modified
store_data/migrations/0003_allow_null_for_icon_url.py (+19/-0)
To merge this branch: bzr merge lp:~dholbach/developer-ubuntu-com/gadget-snap-fix
Reviewer Review Type Date Requested Status
David Callé Pending
Review via email: mp+294507@code.launchpad.net
To post a comment you must log in.
222. By Daniel Holbach

allow null in icon_url

223. By Daniel Holbach

rename to make sense

Unmerged revisions

223. By Daniel Holbach

rename to make sense

222. By Daniel Holbach

allow null in icon_url

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file 'store_data/migrations/0003_allow_null_for_icon_url.py'
2--- store_data/migrations/0003_allow_null_for_icon_url.py 1970-01-01 00:00:00 +0000
3+++ store_data/migrations/0003_allow_null_for_icon_url.py 2016-05-12 13:36:26 +0000
4@@ -0,0 +1,19 @@
5+# -*- coding: utf-8 -*-
6+from __future__ import unicode_literals
7+
8+from django.db import migrations, models
9+
10+
11+class Migration(migrations.Migration):
12+
13+ dependencies = [
14+ ('store_data', '0002_make_screenshot_optional'),
15+ ]
16+
17+ operations = [
18+ migrations.AlterField(
19+ model_name='gadgetsnap',
20+ name='icon_url',
21+ field=models.URLField(null=True, blank=True),
22+ ),
23+ ]

Subscribers

People subscribed via source and target branches

to all changes: