Skip to content

Instantly share code, notes, and snippets.

@Mikulas
Last active July 27, 2017 09:29
Show Gist options
  • Save Mikulas/c3f0d6b62730ccc9fdf29d8d672e1f50 to your computer and use it in GitHub Desktop.
Save Mikulas/c3f0d6b62730ccc9fdf29d8d672e1f50 to your computer and use it in GitHub Desktop.
CREATE TABLE "public"."vpc" (
"time" timestamp NOT NULL,
"version" integer NOT NULL,
"account" text NOT NULL,
"interface" text NOT NULL,
"srcaddr" inet,
"dstaddr" inet,
"srcport" integer,
"dstport" integer,
"protocol" int,
"packets" bigint,
"bytes" bigint,
"start" int,
"end" int,
"action" text,
"log-status" text,
"crosszone" int,
"external" int
) WITH (oids = false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment