~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to notification/migrations/0003_auto_20190409_0924.py

  • Committer: franku
  • Date: 2019-04-10 16:18:40 UTC
  • mfrom: (531.1.5 screens_ordering)
  • Revision ID: somal@arcor.de-20190410161840-29hlbwn3qsbctaa4
allow ordering of screenshots by adding a new column to the tables screenshots; reworked the corresponding admin pages

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
# Generated by Django 1.11.20 on 2019-04-09 09:24
 
3
from __future__ import unicode_literals
 
4
 
 
5
from django.db import migrations, models
 
6
 
 
7
 
 
8
class Migration(migrations.Migration):
 
9
 
 
10
    dependencies = [
 
11
        ('notification', '0002_auto_20170417_1857'),
 
12
    ]
 
13
 
 
14
    operations = [
 
15
        migrations.AlterField(
 
16
            model_name='noticetype',
 
17
            name='display',
 
18
            field=models.CharField(help_text='Used as subject when sending emails.', max_length=50, verbose_name='display'),
 
19
        ),
 
20
    ]