Skip to content

Commit dca0f55

Browse files
committed
Fix order
1 parent 5e7b258 commit dca0f55

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

intelmq/etc/harmonization.conf

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
"description": "Free text commentary about the abuse event inserted by an analyst.",
1818
"type": "String"
1919
},
20+
"constituency": {
21+
"description": "Internal identifier for multi-constituency setup",
22+
"type": "String"
23+
},
2024
"destination.abuse_contact": {
2125
"description": "Abuse contact for destination address. A comma separated list.",
2226
"type": "LowercaseString"
@@ -362,10 +366,6 @@
362366
"tlp": {
363367
"description": "Traffic Light Protocol level of the event.",
364368
"type": "TLP"
365-
},
366-
"constituency": {
367-
"description": "Internal identifier for multi-constituency setup",
368-
"type": "String"
369369
}
370370
},
371371
"report": {

intelmq/tests/bin/initdb.sql

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ CREATE TABLE events (
44
"classification.taxonomy" varchar(100),
55
"classification.type" text,
66
"comment" text,
7+
"constituency" text,
78
"destination.abuse_contact" text,
89
"destination.account" text,
910
"destination.allocated" timestamp with time zone,
@@ -93,4 +94,4 @@ CREATE INDEX "idx_events_source.asn" ON events USING btree ("source.asn");
9394
CREATE INDEX "idx_events_source.ip" ON events USING btree ("source.ip");
9495
CREATE INDEX "idx_events_source.fqdn" ON events USING btree ("source.fqdn");
9596
CREATE INDEX "idx_events_time.observation" ON events USING btree ("time.observation");
96-
CREATE INDEX "idx_events_time.source" ON events USING btree ("time.source");
97+
CREATE INDEX "idx_events_time.source" ON events USING btree ("time.source");

0 commit comments

Comments
 (0)