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

27 lines
657 B
Python
Raw Permalink Normal View History

2019-01-08 23:40:59 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2019-01-08 23:26
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("users", "0079_auto_20181228_2039")]
2019-01-08 23:40:59 +00:00
operations = [
migrations.AlterField(
model_name="user",
name="state",
field=models.IntegerField(
choices=[
(0, "Active"),
(1, "Disabled"),
(2, "Archived"),
(3, "Not yet active"),
],
default=3,
),
)
2019-01-08 23:40:59 +00:00
]