~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to sphinxdoc/migrations/0001_initial.py

  • Committer: franku
  • Date: 2018-03-21 08:10:38 UTC
  • mto: This revision was merged to the branch mainline in revision 496.
  • Revision ID: somal@arcor.de-20180321081038-golj35t804qbdsk3
removed app sphinxdoc

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- coding: utf-8 -*-
2
 
from __future__ import unicode_literals
3
 
 
4
 
from django.db import models, migrations
5
 
 
6
 
 
7
 
class Migration(migrations.Migration):
8
 
 
9
 
    dependencies = [
10
 
    ]
11
 
 
12
 
    operations = [
13
 
        migrations.CreateModel(
14
 
            name='App',
15
 
            fields=[
16
 
                ('id', models.AutoField(verbose_name='ID',
17
 
                                        serialize=False, auto_created=True, primary_key=True)),
18
 
                ('name', models.CharField(max_length=100)),
19
 
                ('slug', models.SlugField(
20
 
                    help_text='Used in the URL for the app. Must be unique.', unique=True)),
21
 
                ('path', models.CharField(max_length=255)),
22
 
            ],
23
 
        ),
24
 
    ]