瀏覽代碼

HUE-8530 [organization] Keep userprofile migrations in sync

Romain 5 年之前
父節點
當前提交
73171d27f5
共有 1 個文件被更改,包括 20 次插入0 次删除
  1. 20 0
      apps/useradmin/src/useradmin/org_migrations/0003_userprofile_hostname.py

+ 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),
+        ),
+    ]