Skip to content

Commit

Permalink
Add missing migrations (#2246)
Browse files Browse the repository at this point in the history
  • Loading branch information
di committed Feb 15, 2023
1 parent 19703a6 commit fad14cb
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pages/migrations/0003_auto_20230214_2113.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.24 on 2023-02-14 21:13

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('pages', '0002_auto_20150416_1853'),
]

operations = [
migrations.AlterField(
model_name='page',
name='content_markup_type',
field=models.CharField(choices=[('', '--'), ('html', 'HTML'), ('plain', 'Plain'), ('markdown', 'Markdown'), ('restructuredtext', 'Restructured Text'), ('markdown_unsafe', 'Markdown (unsafe)')], default='restructuredtext', max_length=30),
),
]
18 changes: 18 additions & 0 deletions sponsors/migrations/0093_auto_20230214_2113.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.24 on 2023-02-14 21:13

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('sponsors', '0092_auto_20220816_1517'),
]

operations = [
migrations.AlterField(
model_name='sponsorshipbenefit',
name='package_only',
field=models.BooleanField(default=False, help_text='If a benefit is only available via a sponsorship package and not as an add-on, select this option.', verbose_name='Sponsor Package Only Benefit'),
),
]

0 comments on commit fad14cb

Please sign in to comment.