mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +02:00
* Add options for a disclaimer, fix html code and remove deprecations * Update READMEs * Minor improvement to portal admin [skip ci]
20 lines
425 B
Python
20 lines
425 B
Python
# Generated by Django 5.1.4 on 2025-01-30 16:39
|
|
|
|
import tinymce.models
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("portal", "0018_siteconfiguration_currency"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="siteconfiguration",
|
|
name="disclaimer",
|
|
field=tinymce.models.HTMLField(blank=True),
|
|
),
|
|
]
|