~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to sphinxdoc/migrations/0001_initial.py

  • Committer: franku
  • Date: 2016-12-13 18:28:51 UTC
  • mto: This revision was merged to the branch mainline in revision 443.
  • Revision ID: somal@arcor.de-20161213182851-bo5ebf8pdvw5beua
run the script

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
        migrations.CreateModel(
14
14
            name='App',
15
15
            fields=[
16
 
                ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
 
16
                ('id', models.AutoField(verbose_name='ID',
 
17
                                        serialize=False, auto_created=True, primary_key=True)),
17
18
                ('name', models.CharField(max_length=100)),
18
 
                ('slug', models.SlugField(help_text='Used in the URL for the app. Must be unique.', unique=True)),
 
19
                ('slug', models.SlugField(
 
20
                    help_text='Used in the URL for the app. Must be unique.', unique=True)),
19
21
                ('path', models.CharField(max_length=255)),
20
22
            ],
21
23
        ),