Source code for tcms.testcases.migrations.0020_add_template

# Generated by Django 3.2.8 on 2021-10-25 16:21

import simple_history.models
from django.conf import settings
from django.db import migrations, models


[docs] def forwards(apps, schema_editor): template_model = apps.get_model("testcases", "Template") template_model.objects.create( name="Gherkin syntax", text="""**Scenario**: ... what behavior will be tested ... **Given** ... conditions ... **When** ... actions ... **Then** ... expected results ... """, ) template_model.objects.create( name="Itemized list", text="""**Steps to reproduce**: 1. item 2. item 3. item **Expected results**: 1. item 2. item 3. item """, )
[docs] class Migration(migrations.Migration): dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ("testcases", "0019_alter_meta"), ] operations = [ migrations.CreateModel( name="Template", fields=[ ( "id", models.AutoField( auto_created=True, primary_key=True, serialize=False, verbose_name="ID", ), ), ("name", models.CharField(max_length=255)), ("text", models.TextField()), ], options={ "verbose_name": "Template", "verbose_name_plural": "Templates", }, ), migrations.CreateModel( name="HistoricalTemplate", fields=[ ( "id", models.IntegerField( auto_created=True, blank=True, db_index=True, verbose_name="ID" ), ), ("name", models.CharField(max_length=255)), ("text", models.TextField()), ("history_id", models.AutoField(primary_key=True, serialize=False)), ("history_date", models.DateTimeField()), ("history_change_reason", models.TextField(null=True)), ( "history_type", models.CharField( choices=[("+", "Created"), ("~", "Changed"), ("-", "Deleted")], max_length=1, ), ), ( "history_user", models.ForeignKey( null=True, on_delete=models.deletion.SET_NULL, related_name="+", to=settings.AUTH_USER_MODEL, ), ), ], options={ "verbose_name": "historical Template", "ordering": ("-history_date", "-history_id"), "get_latest_by": "history_date", }, bases=(simple_history.models.HistoricalChanges, models.Model), ), migrations.RunPython(forwards, migrations.RunPython.noop), ]