kavanland
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

0001_initial.py
text/x-python

Download raw (1.2 KB)

# -*- coding: utf-8 -*-
# Generated by Django 1.9.12 on 2017-03-02 22:58
from __future__ import unicode_literals

import ckeditor.fields
from django.db import migrations, models


class Migration(migrations.Migration):

    initial = True

    dependencies = [
    ]

    operations = [
        migrations.CreateModel(
            name='Annotation',
            fields=[
                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('resource', models.URLField()),
                ('body', ckeditor.fields.RichTextField()),
                ('order', models.PositiveSmallIntegerField(default=0, verbose_name=b'order')),
            ],
            options={
                'ordering': ('resource', 'order'),
            },
        ),
        migrations.CreateModel(
            name='Namespace',
            fields=[
                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('name', models.CharField(max_length=255)),
                ('url', models.CharField(max_length=255)),
                ('color', models.CharField(blank=True, max_length=255)),
            ],
        ),
    ]