~michael.nelson/ubuntu-webcatalog/1267731-import-sca-apps-error

« back to all changes in this revision

Viewing changes to src/webcatalog/migrations/0015_add_applicationmedia.py

  • Committer: Tarmac
  • Author(s): Łukasz Czyżykowski
  • Date: 2013-04-16 13:40:21 UTC
  • mfrom: (178.1.21 upgrade-to-django-1.5)
  • Revision ID: tarmac-20130416134021-q45ptpwb4bn0payb
[r=michael.nelson] Upgrade to Django 1.5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
             self.gf('django.db.models.fields.CharField')(max_length=16)),
17
17
            ('url',
18
18
             self.gf('django.db.models.fields.URLField')(
19
 
                 max_length=200, verify_exists=False)),
 
19
                 max_length=200)),
20
20
        ))
21
21
        db.send_create_signal('webcatalog', ['ApplicationMedia'])
22
22
 
66
66
            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
67
67
            'media_type': ('django.db.models.fields.CharField', [], {'max_length': '16'}),
68
68
            'url': ('django.db.models.fields.URLField', [],
69
 
                    {'max_length': '200', 'verify_exists': 'False'})
 
69
                    {'max_length': '200'})
70
70
        },
71
71
        'webcatalog.application': {
72
72
            'Meta': {'unique_together': "(('distroseries', 'archive_id'),)", 'object_name': 'Application'},