mirror of https://gitlab.federez.net/re2o/re2o
4 changed files with 25 additions and 3 deletions
@ -0,0 +1,19 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('users', '0037_ldapuser_login_shell'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AddField( |
||||
|
model_name='user', |
||||
|
name='rezo_rez_uid', |
||||
|
field=models.IntegerField(null=True, blank=True, unique=True), |
||||
|
), |
||||
|
] |
||||
Loading…
Reference in new issue