aboutsummaryrefslogtreecommitdiffstats
path: root/iceci/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'iceci/migrations')
-rw-r--r--iceci/migrations/0001_initial.py73
-rwxr-xr-xiceci/migrations/0001_initial.pycbin0 -> 1379 bytes
-rw-r--r--iceci/migrations/0002_auto_20160728_1111.py64
-rwxr-xr-xiceci/migrations/0002_auto_20160728_1111.pycbin0 -> 1006 bytes
-rw-r--r--iceci/migrations/0003_auto_20160914_1004.py57
-rwxr-xr-xiceci/migrations/0003_auto_20160914_1004.pycbin0 -> 843 bytes
-rw-r--r--iceci/migrations/0004_testresults_build_id.py58
-rwxr-xr-xiceci/migrations/0004_testresults_build_id.pycbin0 -> 887 bytes
-rw-r--r--iceci/migrations/0005_auto_20161219_0619.py64
-rw-r--r--iceci/migrations/__init__.py38
-rwxr-xr-xiceci/migrations/__init__.pycbin0 -> 148 bytes
-rw-r--r--iceci/migrations/__pycache__/0001_initial.cpython-36.pycbin0 -> 1070 bytes
-rw-r--r--iceci/migrations/__pycache__/0002_auto_20160728_1111.cpython-36.pycbin0 -> 781 bytes
-rw-r--r--iceci/migrations/__pycache__/0003_auto_20160914_1004.cpython-36.pycbin0 -> 635 bytes
-rw-r--r--iceci/migrations/__pycache__/0004_testresults_build_id.cpython-36.pycbin0 -> 670 bytes
-rw-r--r--iceci/migrations/__pycache__/0005_auto_20161219_0619.cpython-36.pycbin0 -> 779 bytes
-rw-r--r--iceci/migrations/__pycache__/__init__.cpython-36.pycbin0 -> 144 bytes
17 files changed, 354 insertions, 0 deletions
diff --git a/iceci/migrations/0001_initial.py b/iceci/migrations/0001_initial.py
new file mode 100644
index 0000000..5441f12
--- /dev/null
+++ b/iceci/migrations/0001_initial.py
@@ -0,0 +1,73 @@
+
+# ============LICENSE_START==========================================
+# org.onap.vvp/test-engine
+# ===================================================================
+# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
+# ===================================================================
+#
+# Unless otherwise specified, all software contained herein is licensed
+# under the Apache License, Version 2.0 (the “License”);
+# you may not use this software except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+#
+#
+# Unless otherwise specified, all documentation contained herein is licensed
+# under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
+# you may not use this documentation except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://creativecommons.org/licenses/by/4.0/
+#
+# Unless required by applicable law or agreed to in writing, documentation
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# ============LICENSE_END============================================
+#
+# ECOMP is a trademark and service mark of AT&T Intellectual Property.
+# Generated by Django 1.9.7 on 2016-06-06 13:51
+from __future__ import unicode_literals
+
+import datetime
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='TestResults',
+ fields=[
+ ('id', models.AutoField(
+ auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('testType', models.CharField(max_length=64)),
+ ('testCaseName', models.CharField(max_length=64)),
+ ('testResult', models.CharField(max_length=64)),
+ ('testName', models.CharField(max_length=64)),
+ ('notes', models.TextField(
+ blank=True, max_length=1024, null=True)),
+ ('create_time', models.DateTimeField(default=datetime.datetime(
+ 2016, 6, 6, 16, 50, 59, 963000), verbose_name='creation time')),
+ ],
+ options={
+ 'db_table': 'ice_test_results',
+ 'verbose_name_plural': 'Tests Results',
+ },
+ ),
+ ]
diff --git a/iceci/migrations/0001_initial.pyc b/iceci/migrations/0001_initial.pyc
new file mode 100755
index 0000000..090a1ae
--- /dev/null
+++ b/iceci/migrations/0001_initial.pyc
Binary files differ
diff --git a/iceci/migrations/0002_auto_20160728_1111.py b/iceci/migrations/0002_auto_20160728_1111.py
new file mode 100644
index 0000000..e8cdb00
--- /dev/null
+++ b/iceci/migrations/0002_auto_20160728_1111.py
@@ -0,0 +1,64 @@
+
+# ============LICENSE_START==========================================
+# org.onap.vvp/test-engine
+# ===================================================================
+# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
+# ===================================================================
+#
+# Unless otherwise specified, all software contained herein is licensed
+# under the Apache License, Version 2.0 (the “License”);
+# you may not use this software except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+#
+#
+# Unless otherwise specified, all documentation contained herein is licensed
+# under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
+# you may not use this documentation except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://creativecommons.org/licenses/by/4.0/
+#
+# Unless required by applicable law or agreed to in writing, documentation
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# ============LICENSE_END============================================
+#
+# ECOMP is a trademark and service mark of AT&T Intellectual Property.
+# Generated by Django 1.9.7 on 2016-07-28 08:11
+from __future__ import unicode_literals
+
+import datetime
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('iceci', '0001_initial'),
+ ]
+
+ operations = [
+ migrations.RenameField(
+ model_name='testresults',
+ old_name='testCaseName',
+ new_name='testFeature',
+ ),
+ migrations.AlterField(
+ model_name='testresults',
+ name='create_time',
+ field=models.DateTimeField(
+ default=datetime.datetime.now, verbose_name='creation time'),
+ ),
+ ]
diff --git a/iceci/migrations/0002_auto_20160728_1111.pyc b/iceci/migrations/0002_auto_20160728_1111.pyc
new file mode 100755
index 0000000..47ac6fd
--- /dev/null
+++ b/iceci/migrations/0002_auto_20160728_1111.pyc
Binary files differ
diff --git a/iceci/migrations/0003_auto_20160914_1004.py b/iceci/migrations/0003_auto_20160914_1004.py
new file mode 100644
index 0000000..88a27df
--- /dev/null
+++ b/iceci/migrations/0003_auto_20160914_1004.py
@@ -0,0 +1,57 @@
+
+# ============LICENSE_START==========================================
+# org.onap.vvp/test-engine
+# ===================================================================
+# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
+# ===================================================================
+#
+# Unless otherwise specified, all software contained herein is licensed
+# under the Apache License, Version 2.0 (the “License”);
+# you may not use this software except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+#
+#
+# Unless otherwise specified, all documentation contained herein is licensed
+# under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
+# you may not use this documentation except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://creativecommons.org/licenses/by/4.0/
+#
+# Unless required by applicable law or agreed to in writing, documentation
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# ============LICENSE_END============================================
+#
+# ECOMP is a trademark and service mark of AT&T Intellectual Property.
+# Generated by Django 1.9.7 on 2016-09-14 10:04
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('iceci', '0002_auto_20160728_1111'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='testresults',
+ name='notes',
+ field=models.TextField(blank=True, null=True),
+ ),
+ ]
diff --git a/iceci/migrations/0003_auto_20160914_1004.pyc b/iceci/migrations/0003_auto_20160914_1004.pyc
new file mode 100755
index 0000000..308df71
--- /dev/null
+++ b/iceci/migrations/0003_auto_20160914_1004.pyc
Binary files differ
diff --git a/iceci/migrations/0004_testresults_build_id.py b/iceci/migrations/0004_testresults_build_id.py
new file mode 100644
index 0000000..d4ba634
--- /dev/null
+++ b/iceci/migrations/0004_testresults_build_id.py
@@ -0,0 +1,58 @@
+
+# ============LICENSE_START==========================================
+# org.onap.vvp/test-engine
+# ===================================================================
+# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
+# ===================================================================
+#
+# Unless otherwise specified, all software contained herein is licensed
+# under the Apache License, Version 2.0 (the “License”);
+# you may not use this software except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+#
+#
+# Unless otherwise specified, all documentation contained herein is licensed
+# under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
+# you may not use this documentation except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://creativecommons.org/licenses/by/4.0/
+#
+# Unless required by applicable law or agreed to in writing, documentation
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# ============LICENSE_END============================================
+#
+# ECOMP is a trademark and service mark of AT&T Intellectual Property.
+# Generated by Django 1.9.7 on 2016-09-26 13:25
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('iceci', '0003_auto_20160914_1004'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='testresults',
+ name='build_id',
+ field=models.TextField(
+ blank=True, default=b'2016,09,26,25,41', null=True),
+ ),
+ ]
diff --git a/iceci/migrations/0004_testresults_build_id.pyc b/iceci/migrations/0004_testresults_build_id.pyc
new file mode 100755
index 0000000..bd87590
--- /dev/null
+++ b/iceci/migrations/0004_testresults_build_id.pyc
Binary files differ
diff --git a/iceci/migrations/0005_auto_20161219_0619.py b/iceci/migrations/0005_auto_20161219_0619.py
new file mode 100644
index 0000000..ad12901
--- /dev/null
+++ b/iceci/migrations/0005_auto_20161219_0619.py
@@ -0,0 +1,64 @@
+
+# ============LICENSE_START==========================================
+# org.onap.vvp/test-engine
+# ===================================================================
+# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
+# ===================================================================
+#
+# Unless otherwise specified, all software contained herein is licensed
+# under the Apache License, Version 2.0 (the “License”);
+# you may not use this software except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+#
+#
+# Unless otherwise specified, all documentation contained herein is licensed
+# under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
+# you may not use this documentation except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://creativecommons.org/licenses/by/4.0/
+#
+# Unless required by applicable law or agreed to in writing, documentation
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# ============LICENSE_END============================================
+#
+# ECOMP is a trademark and service mark of AT&T Intellectual Property.
+# Generated by Django 1.9.7 on 2016-12-19 06:19
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('iceci', '0004_testresults_build_id'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='testresults',
+ name='duration',
+ field=models.CharField(default='000', max_length=64),
+ preserve_default=False,
+ ),
+ migrations.AlterField(
+ model_name='testresults',
+ name='build_id',
+ field=models.TextField(
+ blank=True, default=b'2016-12-19-14-18-40', null=True),
+ ),
+ ]
diff --git a/iceci/migrations/__init__.py b/iceci/migrations/__init__.py
new file mode 100644
index 0000000..30d7152
--- /dev/null
+++ b/iceci/migrations/__init__.py
@@ -0,0 +1,38 @@
+
+# ============LICENSE_START==========================================
+# org.onap.vvp/test-engine
+# ===================================================================
+# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
+# ===================================================================
+#
+# Unless otherwise specified, all software contained herein is licensed
+# under the Apache License, Version 2.0 (the “License”);
+# you may not use this software except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+#
+#
+# Unless otherwise specified, all documentation contained herein is licensed
+# under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
+# you may not use this documentation except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://creativecommons.org/licenses/by/4.0/
+#
+# Unless required by applicable law or agreed to in writing, documentation
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# ============LICENSE_END============================================
+#
+# ECOMP is a trademark and service mark of AT&T Intellectual Property.
diff --git a/iceci/migrations/__init__.pyc b/iceci/migrations/__init__.pyc
new file mode 100755
index 0000000..3c41b4c
--- /dev/null
+++ b/iceci/migrations/__init__.pyc
Binary files differ
diff --git a/iceci/migrations/__pycache__/0001_initial.cpython-36.pyc b/iceci/migrations/__pycache__/0001_initial.cpython-36.pyc
new file mode 100644
index 0000000..a1976ee
--- /dev/null
+++ b/iceci/migrations/__pycache__/0001_initial.cpython-36.pyc
Binary files differ
diff --git a/iceci/migrations/__pycache__/0002_auto_20160728_1111.cpython-36.pyc b/iceci/migrations/__pycache__/0002_auto_20160728_1111.cpython-36.pyc
new file mode 100644
index 0000000..f147368
--- /dev/null
+++ b/iceci/migrations/__pycache__/0002_auto_20160728_1111.cpython-36.pyc
Binary files differ
diff --git a/iceci/migrations/__pycache__/0003_auto_20160914_1004.cpython-36.pyc b/iceci/migrations/__pycache__/0003_auto_20160914_1004.cpython-36.pyc
new file mode 100644
index 0000000..ed2d2ee
--- /dev/null
+++ b/iceci/migrations/__pycache__/0003_auto_20160914_1004.cpython-36.pyc
Binary files differ
diff --git a/iceci/migrations/__pycache__/0004_testresults_build_id.cpython-36.pyc b/iceci/migrations/__pycache__/0004_testresults_build_id.cpython-36.pyc
new file mode 100644
index 0000000..9a9c0a8
--- /dev/null
+++ b/iceci/migrations/__pycache__/0004_testresults_build_id.cpython-36.pyc
Binary files differ
diff --git a/iceci/migrations/__pycache__/0005_auto_20161219_0619.cpython-36.pyc b/iceci/migrations/__pycache__/0005_auto_20161219_0619.cpython-36.pyc
new file mode 100644
index 0000000..fcdb7b6
--- /dev/null
+++ b/iceci/migrations/__pycache__/0005_auto_20161219_0619.cpython-36.pyc
Binary files differ
diff --git a/iceci/migrations/__pycache__/__init__.cpython-36.pyc b/iceci/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000..dfabfb8
--- /dev/null
+++ b/iceci/migrations/__pycache__/__init__.cpython-36.pyc
Binary files differ