You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
988 B
28 lines
988 B
# Generated by Django 5.1.8 on 2025-04-03 00:05
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='GlobalPreferenceModel',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('section', models.CharField(blank=True, db_index=True, default=None, max_length=150, null=True, verbose_name='Section Name')),
|
|
('name', models.CharField(db_index=True, max_length=150, verbose_name='Name')),
|
|
('raw_value', models.TextField(blank=True, null=True, verbose_name='Raw Value')),
|
|
],
|
|
options={
|
|
'verbose_name': 'Global preference',
|
|
'verbose_name_plural': 'Global preferences',
|
|
'unique_together': {('section', 'name')},
|
|
},
|
|
),
|
|
]
|