summaryrefslogtreecommitdiffstats
path: root/migrations
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-01-13 08:31:24 +0100
committerMatthias Beyer <matthias.beyer@atos.net>2021-01-13 15:09:01 +0100
commitcbb1457d62e60e6860320951e08b24b2c1b4d4c8 (patch)
tree1e23030f76a5eff1aaeedfd89de0bc6d55472963 /migrations
parent1c02cf5fa44f4813c919b8d7bca1d8b80af4046b (diff)
Add LICENSE file and license headers
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'migrations')
-rw-r--r--migrations/2020-10-29-132821_create_envvars/down.sql10
-rw-r--r--migrations/2020-10-29-132821_create_envvars/up.sql10
-rw-r--r--migrations/2020-10-29-140235_create_githashes/down.sql10
-rw-r--r--migrations/2020-10-29-140235_create_githashes/up.sql10
-rw-r--r--migrations/2020-10-29-140838_create_packages/down.sql10
-rw-r--r--migrations/2020-10-29-140838_create_packages/up.sql10
-rw-r--r--migrations/2020-10-29-140956_create_images/down.sql10
-rw-r--r--migrations/2020-10-29-140956_create_images/up.sql10
-rw-r--r--migrations/2020-10-29-141023_create_submits/down.sql10
-rw-r--r--migrations/2020-10-29-141023_create_submits/up.sql10
-rw-r--r--migrations/2020-10-29-141904_create_endpoints/down.sql10
-rw-r--r--migrations/2020-10-29-141904_create_endpoints/up.sql10
-rw-r--r--migrations/2020-10-29-142339_create_artifacts/down.sql10
-rw-r--r--migrations/2020-10-29-142339_create_artifacts/up.sql10
-rw-r--r--migrations/2020-10-29-142443_create_jobs/down.sql10
-rw-r--r--migrations/2020-10-29-142443_create_jobs/up.sql10
-rw-r--r--migrations/2020-10-29-142619_create_job_input_artifacts/down.sql10
-rw-r--r--migrations/2020-10-29-142619_create_job_input_artifacts/up.sql10
-rw-r--r--migrations/2020-10-29-142914_create_job_envs/down.sql10
-rw-r--r--migrations/2020-10-29-142914_create_job_envs/up.sql10
-rw-r--r--migrations/2020-10-29-143003_create_submit_envs/down.sql12
-rw-r--r--migrations/2020-10-29-143003_create_submit_envs/up.sql10
-rw-r--r--migrations/2020-11-05-125716_drop_submit_buildplan/down.sql10
-rw-r--r--migrations/2020-11-05-125716_drop_submit_buildplan/up.sql10
-rw-r--r--migrations/2020-11-11-111013_job_output_artifacts/down.sql10
-rw-r--r--migrations/2020-11-11-111013_job_output_artifacts/up.sql10
-rw-r--r--migrations/2020-11-11-111326_job_has_multiple_outputs/down.sql10
-rw-r--r--migrations/2020-11-11-111326_job_has_multiple_outputs/up.sql10
-rw-r--r--migrations/2020-11-13-161449_add_job_uuid/down.sql10
-rw-r--r--migrations/2020-11-13-161449_add_job_uuid/up.sql10
-rw-r--r--migrations/2020-12-03-084509_artifact_release_flag/down.sql10
-rw-r--r--migrations/2020-12-03-084509_artifact_release_flag/up.sql10
-rw-r--r--migrations/2020-12-03-085333_artifact_belongs_to_job/down.sql10
-rw-r--r--migrations/2020-12-03-085333_artifact_belongs_to_job/up.sql10
-rw-r--r--migrations/2020-12-14-100454_artifact-unique-by-job/down.sql10
-rw-r--r--migrations/2020-12-14-100454_artifact-unique-by-job/up.sql10
-rw-r--r--migrations/2020-12-14-113756_artifact_not_unique_by_path/down.sql10
-rw-r--r--migrations/2020-12-14-113756_artifact_not_unique_by_path/up.sql10
38 files changed, 381 insertions, 1 deletions
diff --git a/migrations/2020-10-29-132821_create_envvars/down.sql b/migrations/2020-10-29-132821_create_envvars/down.sql
index f9d8d4f..7a53630 100644
--- a/migrations/2020-10-29-132821_create_envvars/down.sql
+++ b/migrations/2020-10-29-132821_create_envvars/down.sql
@@ -1,2 +1,12 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- This file should undo anything in `up.sql`
DROP TABLE envvars
diff --git a/migrations/2020-10-29-132821_create_envvars/up.sql b/migrations/2020-10-29-132821_create_envvars/up.sql
index 9ef897b..6cefed9 100644
--- a/migrations/2020-10-29-132821_create_envvars/up.sql
+++ b/migrations/2020-10-29-132821_create_envvars/up.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- Your SQL goes here
CREATE TABLE envvars (
id SERIAL PRIMARY KEY NOT NULL,
diff --git a/migrations/2020-10-29-140235_create_githashes/down.sql b/migrations/2020-10-29-140235_create_githashes/down.sql
index db92088..1be30b9 100644
--- a/migrations/2020-10-29-140235_create_githashes/down.sql
+++ b/migrations/2020-10-29-140235_create_githashes/down.sql
@@ -1,2 +1,12 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- This file should undo anything in `up.sql`
DROP TABLE githashes
diff --git a/migrations/2020-10-29-140235_create_githashes/up.sql b/migrations/2020-10-29-140235_create_githashes/up.sql
index 4894cc6..f1a6f09 100644
--- a/migrations/2020-10-29-140235_create_githashes/up.sql
+++ b/migrations/2020-10-29-140235_create_githashes/up.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- Your SQL goes here
CREATE TABLE githashes (
id SERIAL PRIMARY KEY NOT NULL,
diff --git a/migrations/2020-10-29-140838_create_packages/down.sql b/migrations/2020-10-29-140838_create_packages/down.sql
index 47f1bb4..09576ab 100644
--- a/migrations/2020-10-29-140838_create_packages/down.sql
+++ b/migrations/2020-10-29-140838_create_packages/down.sql
@@ -1,2 +1,12 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- This file should undo anything in `up.sql`
DROP TABLE packages
diff --git a/migrations/2020-10-29-140838_create_packages/up.sql b/migrations/2020-10-29-140838_create_packages/up.sql
index f1a6be6..71a9e9c 100644
--- a/migrations/2020-10-29-140838_create_packages/up.sql
+++ b/migrations/2020-10-29-140838_create_packages/up.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- Your SQL goes here
CREATE TABLE packages (
id SERIAL PRIMARY KEY NOT NULL,
diff --git a/migrations/2020-10-29-140956_create_images/down.sql b/migrations/2020-10-29-140956_create_images/down.sql
index 9ba02d4..4966d70 100644
--- a/migrations/2020-10-29-140956_create_images/down.sql
+++ b/migrations/2020-10-29-140956_create_images/down.sql
@@ -1,2 +1,12 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- This file should undo anything in `up.sql`
DROP TABLE images
diff --git a/migrations/2020-10-29-140956_create_images/up.sql b/migrations/2020-10-29-140956_create_images/up.sql
index c047e10..14f2279 100644
--- a/migrations/2020-10-29-140956_create_images/up.sql
+++ b/migrations/2020-10-29-140956_create_images/up.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- Your SQL goes here
CREATE TABLE images (
id SERIAL PRIMARY KEY NOT NULL,
diff --git a/migrations/2020-10-29-141023_create_submits/down.sql b/migrations/2020-10-29-141023_create_submits/down.sql
index 8d0c7f4..0530a22 100644
--- a/migrations/2020-10-29-141023_create_submits/down.sql
+++ b/migrations/2020-10-29-141023_create_submits/down.sql
@@ -1,2 +1,12 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- This file should undo anything in `up.sql`
DROP TABLE submits
diff --git a/migrations/2020-10-29-141023_create_submits/up.sql b/migrations/2020-10-29-141023_create_submits/up.sql
index ca1a8bb..7572412 100644
--- a/migrations/2020-10-29-141023_create_submits/up.sql
+++ b/migrations/2020-10-29-141023_create_submits/up.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- Your SQL goes here
CREATE TABLE submits (
id SERIAL PRIMARY KEY NOT NULL,
diff --git a/migrations/2020-10-29-141904_create_endpoints/down.sql b/migrations/2020-10-29-141904_create_endpoints/down.sql
index 930227d..3e0de1c 100644
--- a/migrations/2020-10-29-141904_create_endpoints/down.sql
+++ b/migrations/2020-10-29-141904_create_endpoints/down.sql
@@ -1,2 +1,12 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- This file should undo anything in `up.sql`
DROP TABLE endpoints
diff --git a/migrations/2020-10-29-141904_create_endpoints/up.sql b/migrations/2020-10-29-141904_create_endpoints/up.sql
index b14c176..f8cd0eb 100644
--- a/migrations/2020-10-29-141904_create_endpoints/up.sql
+++ b/migrations/2020-10-29-141904_create_endpoints/up.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- Your SQL goes here
CREATE TABLE endpoints (
id SERIAL PRIMARY KEY NOT NULL,
diff --git a/migrations/2020-10-29-142339_create_artifacts/down.sql b/migrations/2020-10-29-142339_create_artifacts/down.sql
index 263debe..042e63e 100644
--- a/migrations/2020-10-29-142339_create_artifacts/down.sql
+++ b/migrations/2020-10-29-142339_create_artifacts/down.sql
@@ -1,2 +1,12 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- This file should undo anything in `up.sql`
DROP TABLE artifacts
diff --git a/migrations/2020-10-29-142339_create_artifacts/up.sql b/migrations/2020-10-29-142339_create_artifacts/up.sql
index b133ee7..6ba4edb 100644
--- a/migrations/2020-10-29-142339_create_artifacts/up.sql
+++ b/migrations/2020-10-29-142339_create_artifacts/up.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- Your SQL goes here
CREATE TABLE artifacts (
id SERIAL PRIMARY KEY NOT NULL,
diff --git a/migrations/2020-10-29-142443_create_jobs/down.sql b/migrations/2020-10-29-142443_create_jobs/down.sql
index b54a154..2bf33c1 100644
--- a/migrations/2020-10-29-142443_create_jobs/down.sql
+++ b/migrations/2020-10-29-142443_create_jobs/down.sql
@@ -1,2 +1,12 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- This file should undo anything in `up.sql`
DROP TABLE jobs
diff --git a/migrations/2020-10-29-142443_create_jobs/up.sql b/migrations/2020-10-29-142443_create_jobs/up.sql
index 0ee6d6b..a002a40 100644
--- a/migrations/2020-10-29-142443_create_jobs/up.sql
+++ b/migrations/2020-10-29-142443_create_jobs/up.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- Your SQL goes here
CREATE TABLE jobs (
id SERIAL PRIMARY KEY NOT NULL,
diff --git a/migrations/2020-10-29-142619_create_job_input_artifacts/down.sql b/migrations/2020-10-29-142619_create_job_input_artifacts/down.sql
index 5b74a7b..edef116 100644
--- a/migrations/2020-10-29-142619_create_job_input_artifacts/down.sql
+++ b/migrations/2020-10-29-142619_create_job_input_artifacts/down.sql
@@ -1,2 +1,12 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- This file should undo anything in `up.sql`
DROP TABLE job_input_artifacts
diff --git a/migrations/2020-10-29-142619_create_job_input_artifacts/up.sql b/migrations/2020-10-29-142619_create_job_input_artifacts/up.sql
index dc29ba6..b835594 100644
--- a/migrations/2020-10-29-142619_create_job_input_artifacts/up.sql
+++ b/migrations/2020-10-29-142619_create_job_input_artifacts/up.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- Your SQL goes here
CREATE TABLE job_input_artifacts (
id SERIAL PRIMARY KEY NOT NULL,
diff --git a/migrations/2020-10-29-142914_create_job_envs/down.sql b/migrations/2020-10-29-142914_create_job_envs/down.sql
index beaba4d..ca3c619 100644
--- a/migrations/2020-10-29-142914_create_job_envs/down.sql
+++ b/migrations/2020-10-29-142914_create_job_envs/down.sql
@@ -1,2 +1,12 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- This file should undo anything in `up.sql`
DROP TABLE job_envs
diff --git a/migrations/2020-10-29-142914_create_job_envs/up.sql b/migrations/2020-10-29-142914_create_job_envs/up.sql
index f5cedae..e7bd0ce 100644
--- a/migrations/2020-10-29-142914_create_job_envs/up.sql
+++ b/migrations/2020-10-29-142914_create_job_envs/up.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- Your SQL goes here
CREATE TABLE job_envs (
id SERIAL PRIMARY KEY NOT NULL,
diff --git a/migrations/2020-10-29-143003_create_submit_envs/down.sql b/migrations/2020-10-29-143003_create_submit_envs/down.sql
index 291a97c..5283384 100644
--- a/migrations/2020-10-29-143003_create_submit_envs/down.sql
+++ b/migrations/2020-10-29-143003_create_submit_envs/down.sql
@@ -1 +1,11 @@
--- This file should undo anything in `up.sql` \ No newline at end of file
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
+-- This file should undo anything in `up.sql`
diff --git a/migrations/2020-10-29-143003_create_submit_envs/up.sql b/migrations/2020-10-29-143003_create_submit_envs/up.sql
index 1be7c2e..4161d07 100644
--- a/migrations/2020-10-29-143003_create_submit_envs/up.sql
+++ b/migrations/2020-10-29-143003_create_submit_envs/up.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- Your SQL goes here
CREATE TABLE submit_envs (
id SERIAL PRIMARY KEY NOT NULL,
diff --git a/migrations/2020-11-05-125716_drop_submit_buildplan/down.sql b/migrations/2020-11-05-125716_drop_submit_buildplan/down.sql
index 4ce217c..6c92a8b 100644
--- a/migrations/2020-11-05-125716_drop_submit_buildplan/down.sql
+++ b/migrations/2020-11-05-125716_drop_submit_buildplan/down.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- This file should undo anything in `up.sql`
ALTER TABLE
submits
diff --git a/migrations/2020-11-05-125716_drop_submit_buildplan/up.sql b/migrations/2020-11-05-125716_drop_submit_buildplan/up.sql
index 461a990..f136d0a 100644
--- a/migrations/2020-11-05-125716_drop_submit_buildplan/up.sql
+++ b/migrations/2020-11-05-125716_drop_submit_buildplan/up.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- Your SQL goes here
ALTER TABLE
submits
diff --git a/migrations/2020-11-11-111013_job_output_artifacts/down.sql b/migrations/2020-11-11-111013_job_output_artifacts/down.sql
index 5a6c527..b2d6c3e 100644
--- a/migrations/2020-11-11-111013_job_output_artifacts/down.sql
+++ b/migrations/2020-11-11-111013_job_output_artifacts/down.sql
@@ -1,2 +1,12 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- This file should undo anything in `up.sql`
DROP TABLE job_output_artifacts
diff --git a/migrations/2020-11-11-111013_job_output_artifacts/up.sql b/migrations/2020-11-11-111013_job_output_artifacts/up.sql
index 84b0a44..48e25b4 100644
--- a/migrations/2020-11-11-111013_job_output_artifacts/up.sql
+++ b/migrations/2020-11-11-111013_job_output_artifacts/up.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- Your SQL goes here
CREATE TABLE job_output_artifacts (
id SERIAL PRIMARY KEY NOT NULL,
diff --git a/migrations/2020-11-11-111326_job_has_multiple_outputs/down.sql b/migrations/2020-11-11-111326_job_has_multiple_outputs/down.sql
index b495fb7..affae15 100644
--- a/migrations/2020-11-11-111326_job_has_multiple_outputs/down.sql
+++ b/migrations/2020-11-11-111326_job_has_multiple_outputs/down.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- This file should undo anything in `up.sql`
ALTER TABLE
jobs
diff --git a/migrations/2020-11-11-111326_job_has_multiple_outputs/up.sql b/migrations/2020-11-11-111326_job_has_multiple_outputs/up.sql
index a2ee1d3..c1f5e2e 100644
--- a/migrations/2020-11-11-111326_job_has_multiple_outputs/up.sql
+++ b/migrations/2020-11-11-111326_job_has_multiple_outputs/up.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- Your SQL goes here
ALTER TABLE
jobs
diff --git a/migrations/2020-11-13-161449_add_job_uuid/down.sql b/migrations/2020-11-13-161449_add_job_uuid/down.sql
index d775ff6..d3846e4 100644
--- a/migrations/2020-11-13-161449_add_job_uuid/down.sql
+++ b/migrations/2020-11-13-161449_add_job_uuid/down.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- This file should undo anything in `up.sql`
ALTER TABLE
jobs
diff --git a/migrations/2020-11-13-161449_add_job_uuid/up.sql b/migrations/2020-11-13-161449_add_job_uuid/up.sql
index 798a1b6..eba5dc7 100644
--- a/migrations/2020-11-13-161449_add_job_uuid/up.sql
+++ b/migrations/2020-11-13-161449_add_job_uuid/up.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- Your SQL goes here
ALTER TABLE
jobs
diff --git a/migrations/2020-12-03-084509_artifact_release_flag/down.sql b/migrations/2020-12-03-084509_artifact_release_flag/down.sql
index 9d0ace1..1a68637 100644
--- a/migrations/2020-12-03-084509_artifact_release_flag/down.sql
+++ b/migrations/2020-12-03-084509_artifact_release_flag/down.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- This file should undo anything in `up.sql`
ALTER TABLE
artifacts
diff --git a/migrations/2020-12-03-084509_artifact_release_flag/up.sql b/migrations/2020-12-03-084509_artifact_release_flag/up.sql
index 0c45567..a6c03f8 100644
--- a/migrations/2020-12-03-084509_artifact_release_flag/up.sql
+++ b/migrations/2020-12-03-084509_artifact_release_flag/up.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors
+--
+-- This program and the accompanying materials are made
+-- available under the terms of the Eclipse Public License 2.0
+-- which is available at https://www.eclipse.org/legal/epl-2.0/
+--
+-- SPDX-License-Identifier: EPL-2.0
+--
+
-- Your SQL goes here
ALTER TABLE
artifacts
diff --git a/migrations/2020-12-03-085333_artifact_belongs_to_job/down.sql b/migrations/2020-12-03-085333_artifact_belongs_to_job/down.sql
index 3a56084..8993cf9 100644
--- a/migrations/2020-12-03-085333_artifact_belongs_to_job/down.sql
+++ b/migrations/2020-12-03-085333_artifact_belongs_to_job/down.sql
@@ -1,3 +1,13 @@
+--
+-- Copyright (c) 2020-2021 science+computing ag and other contributors