Skip to content
This repository has been archived by the owner on Aug 23, 2020. It is now read-only.

Commit

Permalink
Merge pull request #77 from giginet/add-missing-migrations
Browse files Browse the repository at this point in the history
Add missing migrations on Django 1.10
  • Loading branch information
lambdalisue committed Nov 12, 2016
2 parents 19fa9d7 + 034f2cb commit c8a1d7a
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/registration/migrations/0003_registration_profile_status.py
@@ -0,0 +1,18 @@
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('registration', '0002_default_supplement'),
]

operations = [
migrations.AlterField(
model_name='registrationprofile',
name='_status',
field=models.CharField(choices=[('untreated', 'Unprocessed'), ('accepted', 'Registration accepted'), ('rejected', 'Registration rejected')], db_column='status', default='untreated', editable=False, max_length=10, verbose_name='status'),
),
]
3 changes: 3 additions & 0 deletions tests/settings.py
Expand Up @@ -111,6 +111,9 @@
os.path.join(os.path.dirname(__file__), 'templates'),
],
'OPTIONS': {
'context_processors': [
'django.contrib.auth.context_processors.auth',
],
'loaders': [
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
Expand Down

0 comments on commit c8a1d7a

Please sign in to comment.