Skip to content

Commit

Permalink
Postgres: added event vendor/name/format/version to atomic.events (cl…
Browse files Browse the repository at this point in the history
…oses #1802)
  • Loading branch information
fblundun committed Sep 25, 2015
1 parent b04c806 commit fbd277f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions 4-storage/postgres-storage/sql/atomic-def.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
-- "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: 0.5.0
-- Version: 0.6.0
-- URL: -
--
-- Authors: Yali Sassoon, Alex Dean, Fred Blundun
Expand Down Expand Up @@ -160,7 +160,7 @@ CREATE TABLE "atomic"."events" (
-- Geolocation
"geo_timezone" varchar(64),
-- Click ID
"mkt_clickid" varchar(128), -- Increased from 64 in 0.5.0
"mkt_clickid" varchar(128),
"mkt_network" varchar(64),
-- ETL tags
"etl_tags" varchar(500),
Expand All @@ -174,7 +174,12 @@ CREATE TABLE "atomic"."events" (
-- Session ID
"domain_sessionid" char(36),
-- Derived timestamp
"derived_tstamp" timestamp
"derived_tstamp" timestamp,
-- Event schema
"event_vendor" varchar(1000),
"event_name" varchar(1000),
"event_format" varchar(128),
"event_version" varchar(128)
)
WITH (OIDS=FALSE)
;

0 comments on commit fbd277f

Please sign in to comment.