8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-01 07:22:25 +00:00
re2o/users/migrations/0081_auto_20190317_0302.py

28 lines
699 B
Python
Raw Permalink Normal View History

2019-03-17 02:00:28 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2019-03-17 02:02
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("users", "0080_auto_20190108_1726")]
2019-03-17 02:00:28 +00:00
operations = [
migrations.AlterField(
model_name="user",
name="state",
field=models.IntegerField(
choices=[
(0, "Active"),
(1, "Disabled"),
(2, "Archived"),
(3, "Not yet active"),
(4, "Full Archived"),
],
default=3,
),
)
2019-03-17 02:00:28 +00:00
]