65 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 2.2.6 on 2019-10-07 14:07
 | 
						|
 | 
						|
import django.db.models.deletion
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    initial = True
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ("passbook_core", "0001_initial"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.CreateModel(
 | 
						|
            name="FieldMatcherPolicy",
 | 
						|
            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_core.Policy",
 | 
						|
                    ),
 | 
						|
                ),
 | 
						|
                (
 | 
						|
                    "user_field",
 | 
						|
                    models.TextField(
 | 
						|
                        choices=[
 | 
						|
                            ("username", "Username"),
 | 
						|
                            ("name", "Name"),
 | 
						|
                            ("email", "E-Mail"),
 | 
						|
                            ("is_staff", "Is staff"),
 | 
						|
                            ("is_active", "Is active"),
 | 
						|
                            ("data_joined", "Date joined"),
 | 
						|
                        ]
 | 
						|
                    ),
 | 
						|
                ),
 | 
						|
                (
 | 
						|
                    "match_action",
 | 
						|
                    models.CharField(
 | 
						|
                        choices=[
 | 
						|
                            ("startswith", "Starts with"),
 | 
						|
                            ("endswith", "Ends with"),
 | 
						|
                            ("contains", "Contains"),
 | 
						|
                            ("regexp", "Regexp"),
 | 
						|
                            ("exact", "Exact"),
 | 
						|
                        ],
 | 
						|
                        max_length=50,
 | 
						|
                    ),
 | 
						|
                ),
 | 
						|
                ("value", models.TextField()),
 | 
						|
            ],
 | 
						|
            options={
 | 
						|
                "verbose_name": "Field matcher Policy",
 | 
						|
                "verbose_name_plural": "Field matcher Policies",
 | 
						|
            },
 | 
						|
            bases=("passbook_core.policy",),
 | 
						|
        ),
 | 
						|
    ]
 |