You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by di...@apache.org on 2020/06/12 15:45:38 UTC

[airavata-django-portal] branch param-sweep updated: Removing unnecessary migrations

This is an automated email from the ASF dual-hosted git repository.

dimuthuupe pushed a commit to branch param-sweep
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


The following commit(s) were added to refs/heads/param-sweep by this push:
     new be2427e  Removing unnecessary migrations
be2427e is described below

commit be2427eb10b6ba4d4504126a14ba28a75b64aded
Author: Dimuthu Wannipurage <di...@gmail.com>
AuthorDate: Fri Jun 12 11:45:24 2020 -0400

    Removing unnecessary migrations
---
 .../apps/api/migrations/0005_parsingtemplates.py   | 23 ----------------------
 .../api/migrations/0006_delete_parsingtemplates.py | 18 -----------------
 2 files changed, 41 deletions(-)

diff --git a/django_airavata/apps/api/migrations/0005_parsingtemplates.py b/django_airavata/apps/api/migrations/0005_parsingtemplates.py
deleted file mode 100644
index 30fc283..0000000
--- a/django_airavata/apps/api/migrations/0005_parsingtemplates.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# -*- coding: utf-8 -*-
-# Generated by Django 1.11.28 on 2020-06-02 13:40
-from __future__ import unicode_literals
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
-    dependencies = [
-        ('django_airavata_api', '0004_auto_20191112_2134'),
-    ]
-
-    operations = [
-        migrations.CreateModel(
-            name='ParsingTemplates',
-            fields=[
-                ('id', models.CharField(max_length=2048, primary_key=True, serialize=False)),
-                ('application_interface', models.CharField(max_length=2048)),
-                ('gatewayId', models.CharField(max_length=2048)),
-            ],
-        ),
-    ]
diff --git a/django_airavata/apps/api/migrations/0006_delete_parsingtemplates.py b/django_airavata/apps/api/migrations/0006_delete_parsingtemplates.py
deleted file mode 100644
index cfe7db5..0000000
--- a/django_airavata/apps/api/migrations/0006_delete_parsingtemplates.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# -*- coding: utf-8 -*-
-# Generated by Django 1.11.28 on 2020-06-12 15:26
-from __future__ import unicode_literals
-
-from django.db import migrations
-
-
-class Migration(migrations.Migration):
-
-    dependencies = [
-        ('django_airavata_api', '0005_parsingtemplates'),
-    ]
-
-    operations = [
-        migrations.DeleteModel(
-            name='ParsingTemplates',
-        ),
-    ]