Last active
July 27, 2017 09:29
-
-
Save Mikulas/c3f0d6b62730ccc9fdf29d8d672e1f50 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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