aboutsummaryrefslogtreecommitdiffstats
path: root/iceci/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'iceci/migrations')
-rw-r--r--iceci/migrations/0001_initial.py9
-rw-r--r--iceci/migrations/__init__.py4
2 files changed, 8 insertions, 5 deletions
diff --git a/iceci/migrations/0001_initial.py b/iceci/migrations/0001_initial.py
index 5441f12..b229156 100644
--- a/iceci/migrations/0001_initial.py
+++ b/iceci/migrations/0001_initial.py
@@ -55,15 +55,18 @@ class Migration(migrations.Migration):
name='TestResults',
fields=[
('id', models.AutoField(
- auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ 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')),
+ ('create_time', models.DateTimeField(
+ default=datetime.datetime(
+ 2016, 6, 6, 16, 50, 59, 963000),
+ verbose_name='creation time')),
],
options={
'db_table': 'ice_test_results',
diff --git a/iceci/migrations/__init__.py b/iceci/migrations/__init__.py
index 30d7152..32b601a 100644
--- a/iceci/migrations/__init__.py
+++ b/iceci/migrations/__init__.py
@@ -1,5 +1,5 @@
-
-# ============LICENSE_START==========================================
+
+# ============LICENSE_START==========================================
# org.onap.vvp/test-engine
# ===================================================================
# Copyright © 2017 AT&T Intellectual Property. All rights reserved.