diff options
| author | Claude Paroz <claude@2xlibre.net> | 2014-04-19 13:57:08 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-06-15 21:15:17 -0400 |
| commit | 380cafe5bee50d4cc9d90ef6e33e47be9de25e0b (patch) | |
| tree | 3051c29f54b83af120d294cf2d060b49a1278539 | |
| parent | ec7cddd361c7e575397e067c5f0e0846c11a0b10 (diff) | |
[1.7.x] Added database migration for contrib.redirects.
refs #22170.
Backport of d7576bb27a from master
| -rw-r--r-- | django/contrib/redirects/migrations/0001_initial.py | 31 | ||||
| -rw-r--r-- | django/contrib/redirects/migrations/__init__.py | 0 |
2 files changed, 31 insertions, 0 deletions
diff --git a/django/contrib/redirects/migrations/0001_initial.py b/django/contrib/redirects/migrations/0001_initial.py new file mode 100644 index 0000000000..6f16c47f14 --- /dev/null +++ b/django/contrib/redirects/migrations/0001_initial.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('sites', '0001_initial'), + ] + + operations = [ + migrations.CreateModel( + name='Redirect', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('site', models.ForeignKey(to='sites.Site', to_field='id')), + ('old_path', models.CharField(help_text="This should be an absolute path, excluding the domain name. Example: '/events/search/'.", max_length=200, verbose_name='redirect from', db_index=True)), + ('new_path', models.CharField(help_text="This can be either an absolute path (as above) or a full URL starting with 'http://'.", max_length=200, verbose_name='redirect to', blank=True)), + ], + options={ + 'ordering': ('old_path',), + 'unique_together': set([('site', 'old_path')]), + 'db_table': 'django_redirect', + 'verbose_name': 'redirect', + 'verbose_name_plural': 'redirects', + }, + bases=(models.Model,), + ), + ] diff --git a/django/contrib/redirects/migrations/__init__.py b/django/contrib/redirects/migrations/__init__.py new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/django/contrib/redirects/migrations/__init__.py |
