Skip to content

Commit

Permalink
Add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Apr 9, 2016
1 parent 207b856 commit a49b629
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions djangocms_highlightjs/migrations/0002_auto_20160409_1853.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.3 on 2016-04-09 16:53
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('djangocms_highlightjs', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='highlighttext',
name='theme',
field=models.CharField(choices=[('arta', 'Arta'), ('ascetic', 'Ascetic'), ('atelier-dune.dark', 'Atelier Dune - Dark'), ('atelier-dune.light', 'Atelier Dune - Light'), ('atelier-forest.dark', 'Atelier forest - Dark'), ('atelier-forest.light', 'Atelier forest - Light'), ('atelier-heath.dark', 'Atelier heath - Dark'), ('atelier-heath.light', 'Atelier heath - Light'), ('atelier-lakeside.dark', 'Atelier lakeside - Dark'), ('atelier-lakeside.light', 'Atelier lakeside - Light'), ('atelier-seaside.dark', 'Atelier seaside - Dark'), ('atelier-seaside.light', 'Atelier seaside - Light'), ('brown_paper', 'Brown Paper'), ('dark', 'Dark'), ('default', 'Default'), ('docco', 'Docco'), ('far', 'Far'), ('foundation', 'Foundation'), ('github', 'Github'), ('googlecode', 'GoogleCode'), ('idea', 'IDEA'), ('ir_black', 'Ir black'), ('magula', 'Magula'), ('mono-blue', 'Mono Blue'), ('monokai', 'Monokai'), ('monokai_sublime', 'Monokai sublime'), ('obsidian', 'Obsidian'), ('paraiso.dark', 'Paraiso - Dark'), ('paraiso.light', 'éaraiso - Light'), ('pojoaque', 'Pojoaque'), ('railscasts', 'RailsCasts'), ('rainbow', 'Rainbow'), ('school_book', 'School Book'), ('solarized_dark', 'Solarized - Dark'), ('solarized_light', 'Solarized - Light'), ('sunburst', 'Sunburst'), ('tomorrow', 'Tomorrow'), ('tomorrow-night', 'Tomorrow night'), ('tomorrow-night-blue', 'Tomorrow night - Blug'), ('tomorrow-night-bright', 'Tomorrow night - Bright'), ('tomorrow-night-eighties', 'Tomorrow night - Eighties'), ('vs', 'VS'), ('xcode', 'XCode'), ('zenburn', 'Zenburn')], max_length=100, verbose_name='Rendering theme'),
),
]

0 comments on commit a49b629

Please sign in to comment.