FreedomBox/plinth/migrations/0001_initial.py
Sunil Mohan Adapa 9368504da5
*.py: Use SPDX license identifier
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2020-02-19 14:38:55 +02:00

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()),
],
),
]