This repository has been archived on 2019-10-12. You can view files and clone it, but cannot push or open issues or pull requests.

25 lines
775 B
Python

# Generated by Django 2.1.7 on 2019-05-15 01:07
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('account_helper', '0001_initial'),
]
operations = [
migrations.CreateModel(
name='DeletedUser',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('deletion_date', models.DateField(auto_now=True)),
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
],
),
]