* *: migrate to per-model UUID Primary key, remove UUIDModel * *: fix import order, fix unittests
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 3.0.6 on 2020-05-19 22:08
 | 
						|
 | 
						|
import django.db.models.deletion
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    initial = True
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ("passbook_policies", "0001_initial"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.CreateModel(
 | 
						|
            name="HaveIBeenPwendPolicy",
 | 
						|
            fields=[
 | 
						|
                (
 | 
						|
                    "policy_ptr",
 | 
						|
                    models.OneToOneField(
 | 
						|
                        auto_created=True,
 | 
						|
                        on_delete=django.db.models.deletion.CASCADE,
 | 
						|
                        parent_link=True,
 | 
						|
                        primary_key=True,
 | 
						|
                        serialize=False,
 | 
						|
                        to="passbook_policies.Policy",
 | 
						|
                    ),
 | 
						|
                ),
 | 
						|
                ("allowed_count", models.IntegerField(default=0)),
 | 
						|
            ],
 | 
						|
            options={
 | 
						|
                "verbose_name": "Have I Been Pwned Policy",
 | 
						|
                "verbose_name_plural": "Have I Been Pwned Policies",
 | 
						|
            },
 | 
						|
            bases=("passbook_policies.policy",),
 | 
						|
        ),
 | 
						|
    ]
 |