You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by mi...@apache.org on 2017/03/09 19:09:16 UTC

[08/44] incubator-trafficcontrol git commit: clean up old file

clean up old file


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/commit/76cf848c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/tree/76cf848c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/diff/76cf848c

Branch: refs/heads/master
Commit: 76cf848c0f30cecd9f305f0f9772868f8fd81900
Parents: 1d5d9b5
Author: Jan van Doorn <ja...@cable.comcast.com>
Authored: Mon Dec 26 10:46:26 2016 -0700
Committer: Jan van Doorn <jv...@apache.org>
Committed: Fri Feb 17 17:49:10 2017 +0000

----------------------------------------------------------------------
 .../20161222000000_add_mso_profile.sql          | 29 --------------------
 1 file changed, 29 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/76cf848c/traffic_ops/app/db/migrations/20161222000000_add_mso_profile.sql
----------------------------------------------------------------------
diff --git a/traffic_ops/app/db/migrations/20161222000000_add_mso_profile.sql b/traffic_ops/app/db/migrations/20161222000000_add_mso_profile.sql
deleted file mode 100644
index 69b8592..0000000
--- a/traffic_ops/app/db/migrations/20161222000000_add_mso_profile.sql
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
-
-    Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file 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.
-*/
-
--- +goose Up
--- SQL in section 'Up' is executed when this migration is applied
-ALTER TABLE public.deliveryservice ADD COLUMN mso_profile bigint;
-ALTER TABLE public.deliveryservice
-  ADD CONSTRAINT fk_deliveryservice_profile2 FOREIGN KEY (mso_profile)
-      REFERENCES public.profile (id) MATCH SIMPLE
-      ON UPDATE NO ACTION ON DELETE NO ACTION;
-CREATE INDEX idx_18221_fk_deliveryservice_mso_profile1
-  ON public.deliveryservice
-  USING btree
-  (mso_profile);
--- +goose Down
--- SQL section 'Down' is executed when this migration is rolled back
-ALTER TABLE public.deliveryservice DROP COLUMN mso_profile;
\ No newline at end of file