1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2026-03-21 10:04:51 +00:00

Add all settings to appsettings page & Convert settings choices

This commit is contained in:
catborise 2020-05-29 00:43:26 +03:00
parent e304a64a5c
commit e44b0d4df3
26 changed files with 417 additions and 439 deletions

View file

@ -1,4 +1,4 @@
# Generated by Django 2.2.12 on 2020-05-23 15:53
# Generated by Django 2.2.12 on 2020-05-27 16:03
from django.db import migrations, models
@ -16,8 +16,9 @@ class Migration(migrations.Migration):
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=25)),
('key', models.CharField(max_length=50, unique=True)),
('key', models.CharField(db_index=True, max_length=50, unique=True)),
('value', models.CharField(max_length=25)),
('choices', models.CharField(max_length=50)),
('description', models.CharField(max_length=100, null=True)),
],
),