~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to wlprofile/migrations/0002_profile_deleted.py

  • Committer: franku
  • Date: 2018-09-19 18:30:17 UTC
  • mfrom: (497.2.17 delete_user)
  • Revision ID: somal@arcor.de-20180919183017-0mhtkxmycgn3b4lz
make it possible for a user to delete himself, anonymize his data

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
# Generated by Django 1.11.12 on 2018-09-13 21:23
 
3
from __future__ import unicode_literals
 
4
 
 
5
from django.db import migrations, models
 
6
 
 
7
 
 
8
class Migration(migrations.Migration):
 
9
 
 
10
    dependencies = [
 
11
        ('wlprofile', '0001_initial'),
 
12
    ]
 
13
 
 
14
    operations = [
 
15
        migrations.AddField(
 
16
            model_name='profile',
 
17
            name='deleted',
 
18
            field=models.BooleanField(default=False),
 
19
        ),
 
20
    ]