Skip to content
Snippets Groups Projects
Select Git revision
  • 6178263065e272aeff1806ecc71fdd1f8256ceec
  • master default
  • test protected
  • pdp
  • localwebs
  • target-groups
  • seo1
  • fix1
8 results

0002_auto_20200805_0726.py

Blame
  • Forked from TO / Maják
    Source project has a limited visibility.
    0002_auto_20200805_0726.py 926 B
    # Generated by Django 3.0.8 on 2020-08-05 05:26
    
    from django.db import migrations, models
    
    
    class Migration(migrations.Migration):
    
        dependencies = [
            ("program2021", "0001_initial"),
        ]
    
        operations = [
            migrations.AddField(
                model_name="program2021homepage",
                name="headline",
                field=models.CharField(
                    blank=True,
                    help_text="Hlavní titulek domovské stránky",
                    max_length=100,
                    null=True,
                    verbose_name="název programu",
                ),
            ),
            migrations.AddField(
                model_name="program2021homepage",
                name="perex",
                field=models.TextField(
                    blank=True,
                    help_text="Text pod titulkem",
                    max_length=512,
                    null=True,
                    verbose_name="perex",
                ),
            ),
        ]