mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
31 lines
659 B
Python
31 lines
659 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
#
|
|
# Generated by Django 1.9 on 2015-12-04 07:27
|
|
#
|
|
"""
|
|
Initial Django migration for FreedomBox to create database tables.
|
|
"""
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
"""Initial migration schema for FreedomBox models."""
|
|
|
|
initial = True
|
|
|
|
dependencies = []
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='KVStore',
|
|
fields=[
|
|
('key', models.TextField(primary_key=True, serialize=False)),
|
|
('value_json', models.TextField()),
|
|
],
|
|
),
|
|
]
|