Skip to content

Commit

Permalink
Redshift: added migration script for 0.6.0 to 0.7.0 (closes #1988)
Browse files Browse the repository at this point in the history
  • Loading branch information
fblundun authored and alexanderdean committed Jan 14, 2016
1 parent 0ecd728 commit 8e57ca3
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions 4-storage/redshift-storage/sql/migrate_0.6.0_to_0.7.0.sql
@@ -0,0 +1,44 @@
-- Copyright (c) 2015 Snowplow Analytics Ltd. All rights reserved.
--
-- This program is licensed to you under the Apache License Version 2.0,
-- and you may not use this file except in compliance with the Apache License Version 2.0.
-- You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
--
-- Unless required by applicable law or agreed to in writing,
-- software distributed under the Apache License Version 2.0 is distributed on an
-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
--
-- Version: Ports version 0.6.0 to version 0.7.0
-- URL: -
--
-- Authors: Fred Blundun
-- Copyright: Copyright (c) 2015 Snowplow Analytics Ltd
-- License: Apache License Version 2.0

BEGIN TRANSACTION;

ALTER TABLE atomic.events
RENAME COLUMN dvce_tstamp TO dvce_created_tstamp;

ALTER TABLE atomic.events
ADD COLUMN event_vendor varchar(1000) encode lzo;

ALTER TABLE atomic.events
ADD COLUMN event_name varchar(1000) encode lzo;

ALTER TABLE atomic.events
ADD COLUMN event_format varchar(128) encode lzo;

ALTER TABLE atomic.events
ADD COLUMN event_version varchar(128) encode lzo;

ALTER TABLE atomic.events
ADD COLUMN event_fingerprint varchar(128) encode lzo;

ALTER TABLE atomic.events
ADD COLUMN true_tstamp timestamp;

COMMENT ON TABLE "atomic"."events" IS '0.7.0';

END TRANSACTION;

0 comments on commit 8e57ca3

Please sign in to comment.