소스 검색

HUE-9411 [core] Add missing oozie and pig migrations (sree)

sreenaths 5 년 전
부모
커밋
87e9ff3d13
2개의 변경된 파일38개의 추가작업 그리고 0개의 파일을 삭제
  1. 18 0
      apps/oozie/src/oozie/migrations/0006_auto_20200714_1204.py
  2. 20 0
      apps/pig/src/pig/migrations/0002_auto_20200714_1204.py

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 18 - 0
apps/oozie/src/oozie/migrations/0006_auto_20200714_1204.py


+ 20 - 0
apps/pig/src/pig/migrations/0002_auto_20200714_1204.py

@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.28 on 2020-07-14 12:04
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('pig', '0001_initial'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='pigscript',
+            name='data',
+            field=models.TextField(default='{"script": "", "name": "", "properties": [], "job_id": null, "parameters": [], "resources": [], "hadoopProperties": []}'),
+        ),
+    ]

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.