Skip to content
This repository has been archived by the owner on Mar 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #6 from natgeosociety/df-feature-ipod-366
Browse files Browse the repository at this point in the history
[IPOD-366] Sync migrations
  • Loading branch information
dpfrakes authored May 2, 2019
2 parents 5ac0407 + 479029a commit aedcc80
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 2 deletions.
4 changes: 2 additions & 2 deletions curricula/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"""
__version_info__ = {
'major': 2,
'minor': 8,
'micro': 1,
'minor': 9,
'micro': 0,
'releaselevel': 'final',
'serial': 1,
}
Expand Down
69 changes: 69 additions & 0 deletions curricula/migrations/0008_auto_20190502_1324.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.17 on 2019-05-02 17:24
from __future__ import unicode_literals

import bitfield.models
from django.db import migrations
import django.db.models.manager


class Migration(migrations.Migration):

dependencies = [
('curricula', '0007_delete_cascade_fix'),
]

operations = [
migrations.AlterModelManagers(
name='skill',
managers=[
('tree', django.db.models.manager.Manager()),
],
),
migrations.AlterModelManagers(
name='tipcategory',
managers=[
('tree', django.db.models.manager.Manager()),
],
),
migrations.AlterField(
model_name='activity',
name='appropriate_for',
field=bitfield.models.BitField([b'Educator', b'Informal Educator', b'Family', b'Student', b'PreK', b'Kindergarten', b'1st Grade', b'2nd Grade', b'3rd Grade', b'4th Grade', b'5th Grade', b'6th Grade', b'7th Grade', b'8th Grade', b'9th Grade', b'10th Grade', b'11th Grade', b'12th Grade', b'Higher Education'], default=None, help_text=b'Select the audience(s) for which this content is\n appropriate. Selecting audiences means that a separate audience view of\n the page will exist for those audiences.\n\n Note that the text you input in this form serves as the default text.\n If you indicate this activity is appropriate for multiple audiences,\n you either need to add text variations or the default text must be\n appropriate for those audiences.'),
),
migrations.AlterField(
model_name='idea',
name='appropriate_for',
field=bitfield.models.BitField([b'Educator', b'Informal Educator', b'Family', b'Student', b'PreK', b'Kindergarten', b'1st Grade', b'2nd Grade', b'3rd Grade', b'4th Grade', b'5th Grade', b'6th Grade', b'7th Grade', b'8th Grade', b'9th Grade', b'10th Grade', b'11th Grade', b'12th Grade', b'Higher Education'], default=None, help_text=b'Select the audience(s) for which this content is\n appropriate.'),
),
migrations.AlterField(
model_name='ideacategory',
name='appropriate_for',
field=bitfield.models.BitField([b'Educator', b'Informal Educator', b'Family', b'Student', b'PreK', b'Kindergarten', b'1st Grade', b'2nd Grade', b'3rd Grade', b'4th Grade', b'5th Grade', b'6th Grade', b'7th Grade', b'8th Grade', b'9th Grade', b'10th Grade', b'11th Grade', b'12th Grade', b'Higher Education'], default=None, help_text=b'Select the audience(s) for which this content is\n appropriate.'),
),
migrations.AlterField(
model_name='lesson',
name='appropriate_for',
field=bitfield.models.BitField([b'Educator', b'Informal Educator', b'Family', b'Student', b'PreK', b'Kindergarten', b'1st Grade', b'2nd Grade', b'3rd Grade', b'4th Grade', b'5th Grade', b'6th Grade', b'7th Grade', b'8th Grade', b'9th Grade', b'10th Grade', b'11th Grade', b'12th Grade', b'Higher Education'], default=None, help_text=b'Select the audience(s) for which this content is\n appropriate. Selecting audiences means that a separate audience view of\n the page will exist for those audiences. For a lesson, the only possible\n choices are Teachers and Informal Educators.\n\n Note that the text you input in this form serves as the default text.\n If you indicate this activity is appropriate for both T/IE audiences,\n you either need to add text variations or the default text must be\n appropriate for for both audiences.'),
),
migrations.AlterField(
model_name='questionanswer',
name='appropriate_for',
field=bitfield.models.BitField([b'Educator', b'Informal Educator', b'Family', b'Student', b'PreK', b'Kindergarten', b'1st Grade', b'2nd Grade', b'3rd Grade', b'4th Grade', b'5th Grade', b'6th Grade', b'7th Grade', b'8th Grade', b'9th Grade', b'10th Grade', b'11th Grade', b'12th Grade', b'Higher Education'], blank=True, default=None, null=True),
),
migrations.AlterField(
model_name='skill',
name='appropriate_for',
field=bitfield.models.BitField([b'Educator', b'Informal Educator', b'Family', b'Student', b'PreK', b'Kindergarten', b'1st Grade', b'2nd Grade', b'3rd Grade', b'4th Grade', b'5th Grade', b'6th Grade', b'7th Grade', b'8th Grade', b'9th Grade', b'10th Grade', b'11th Grade', b'12th Grade', b'Higher Education'], default=None),
),
migrations.AlterField(
model_name='tip',
name='appropriate_for',
field=bitfield.models.BitField([b'Educator', b'Informal Educator', b'Family', b'Student', b'PreK', b'Kindergarten', b'1st Grade', b'2nd Grade', b'3rd Grade', b'4th Grade', b'5th Grade', b'6th Grade', b'7th Grade', b'8th Grade', b'9th Grade', b'10th Grade', b'11th Grade', b'12th Grade', b'Higher Education'], default=None),
),
migrations.AlterField(
model_name='unit',
name='appropriate_for',
field=bitfield.models.BitField([b'Educator', b'Informal Educator', b'Family', b'Student', b'PreK', b'Kindergarten', b'1st Grade', b'2nd Grade', b'3rd Grade', b'4th Grade', b'5th Grade', b'6th Grade', b'7th Grade', b'8th Grade', b'9th Grade', b'10th Grade', b'11th Grade', b'12th Grade', b'Higher Education'], default=None, help_text=b'Select the audience(s) for which this content is\n appropriate. Selecting audiences means that a separate audience view of\n the page will exist for those audiences.\n\n Note that the text you input in this form serves as the default text.\n If you indicate this unit is appropriate for multiple audiences,\n you either need to add text variations or the default text must be\n appropriate for those audiences.'),
),
]

0 comments on commit aedcc80

Please sign in to comment.