Skip to content

Commit

Permalink
Postgres: added event_fingerprint to atomic.events (closes #1970)
Browse files Browse the repository at this point in the history
  • Loading branch information
fblundun committed Sep 25, 2015
1 parent 94f97eb commit b216cef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion 4-storage/postgres-storage/sql/atomic-def.sql
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,9 @@ CREATE TABLE "atomic"."events" (
"event_vendor" varchar(1000),
"event_name" varchar(1000),
"event_format" varchar(128),
"event_version" varchar(128)
"event_version" varchar(128),
-- Event fingerprint
"event_fingerprint" varchar(128)
)
WITH (OIDS=FALSE)
;

0 comments on commit b216cef

Please sign in to comment.