mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 20:40:17 +02:00
34 lines
827 B
Python
34 lines
827 B
Python
# Generated by Django 4.2.15 on 2024-08-10 15:53
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = []
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="CustomCSS",
|
|
fields=[
|
|
(
|
|
"id",
|
|
models.AutoField(
|
|
auto_created=True,
|
|
primary_key=True,
|
|
serialize=False,
|
|
verbose_name="ID",
|
|
),
|
|
),
|
|
("css", models.TextField()),
|
|
],
|
|
options={
|
|
"verbose_name": "Custom CSS",
|
|
"verbose_name_plural": "Custom CSS",
|
|
"default_permissions": (),
|
|
},
|
|
),
|
|
]
|