1BEGIN;
2
3CREATE TABLE "community" (
4  "ip" inet NOT NULL,
5  "snmp_comm_rw" text,
6  PRIMARY KEY ("ip")
7);
8
9COMMIT;
10