Просмотр исходного кода

HUE-8530 [organization] Keep userprofile migrations in sync

Romain 5 лет назад
Родитель
Сommit
73171d27f5

+ 20 - 0
apps/useradmin/src/useradmin/org_migrations/0003_userprofile_hostname.py

@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.28 on 2020-03-14 14:32
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('useradmin', '0002_auto_20200130_1041'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='userprofile',
+            name='hostname',
+            field=models.CharField(max_length=255, null=True),
+        ),
+    ]