Skip to content
Snippets Groups Projects
Commit c4bccec2 authored by Hangzhi Yu's avatar Hangzhi Yu
Browse files

Recreate migrations

parent 7d253592
No related branches found
No related tags found
No related merge requests found
Source diff could not be displayed: it is too large. Options to address this: view the blob.
This diff is collapsed.
# Generated by Django 3.0.5 on 2020-04-13 09:59
from django.db import migrations
import ckeditor.fields
class Migration(migrations.Migration):
dependencies = [
("hjelp", "0002_add_bug_report"),
]
operations = [
migrations.AlterField(
model_name="faqquestion",
name="answer_text",
field=ckeditor.fields.RichTextField(
help_text="Because of our CSS framework the HTML tag <strong>&lt;ul&gt;</strong> must have the CSS class <em>browser-default</em>. In this case, please use the manual editor mode."
),
),
]
# Generated by Django 3.0.5 on 2020-04-14 13:28
import django.contrib.postgres.fields.jsonb
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("hjelp", "0003_alter_faqquestion_answer_text_field"),
]
operations = [
migrations.AddField(
model_name="faqquestion",
name="extended_data",
field=django.contrib.postgres.fields.jsonb.JSONField(
default=dict, editable=False
),
),
migrations.AddField(
model_name="faqsection",
name="extended_data",
field=django.contrib.postgres.fields.jsonb.JSONField(
default=dict, editable=False
),
),
migrations.AddField(
model_name="rebuscategory",
name="extended_data",
field=django.contrib.postgres.fields.jsonb.JSONField(
default=dict, editable=False
),
),
migrations.AddField(
model_name="support",
name="extended_data",
field=django.contrib.postgres.fields.jsonb.JSONField(
default=dict, editable=False
),
),
]
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment