30 lines
		
	
	
		
			933 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			933 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 2.1.7 on 2019-03-03 13:46
 | |
| 
 | |
| import django.db.models.deletion
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     initial = True
 | |
| 
 | |
|     dependencies = [
 | |
|         ('passbook_core', '0016_auto_20190227_1355'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.CreateModel(
 | |
|             name='PasswordExpiryPolicy',
 | |
|             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')),
 | |
|                 ('deny_only', models.BooleanField(default=False)),
 | |
|                 ('days', models.IntegerField()),
 | |
|             ],
 | |
|             options={
 | |
|                 'verbose_name': 'Password Expiry Policy',
 | |
|                 'verbose_name_plural': 'Password Expiry Policies',
 | |
|             },
 | |
|             bases=('passbook_core.policy',),
 | |
|         ),
 | |
|     ]
 | 
