31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
# Generated by Django 2.2.6 on 2019-10-07 14:07
|
|
|
|
import django.contrib.postgres.fields
|
|
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='PasswordFactor',
|
|
fields=[
|
|
('factor_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='passbook_core.Factor')),
|
|
('backends', django.contrib.postgres.fields.ArrayField(base_field=models.TextField(), size=None)),
|
|
('password_policies', models.ManyToManyField(blank=True, to='passbook_core.Policy')),
|
|
],
|
|
options={
|
|
'verbose_name': 'Password Factor',
|
|
'verbose_name_plural': 'Password Factors',
|
|
},
|
|
bases=('passbook_core.factor',),
|
|
),
|
|
]
|