You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jumpserver/apps/users/migrations/0032_userpasswordhistory.py

26 lines
859 B

# Generated by Django 3.1 on 2021-04-27 12:43
import common.db.models
from django.conf import settings
from django.db import migrations, models
import uuid
class Migration(migrations.Migration):
dependencies = [
('users', '0031_auto_20201118_1801'),
]
operations = [
migrations.CreateModel(
name='UserPasswordHistory',
fields=[
('id', models.UUIDField(default=uuid.uuid4, primary_key=True, serialize=False)),
('password', models.CharField(max_length=128)),
('date_created', models.DateTimeField(auto_now_add=True, verbose_name='Date created')),
('user', models.ForeignKey(on_delete=common.db.models.CASCADE_SIGNAL_SKIP, related_name='history_passwords', to=settings.AUTH_USER_MODEL, verbose_name='User')),
],
),
]