mirror of
https://github.com/ajurna/cbwebreader.git
synced 2025-12-06 06:17:17 +00:00
21 lines
523 B
Python
21 lines
523 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = []
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="Setting",
|
|
fields=[
|
|
("id", models.AutoField(verbose_name="ID", serialize=False, auto_created=True, primary_key=True)),
|
|
("name", models.CharField(max_length=50)),
|
|
("value", models.TextField()),
|
|
],
|
|
)
|
|
]
|