spec/dummy/db/structure.sql in metasploit-credential-0.14.0 vs spec/dummy/db/structure.sql in metasploit-credential-0.14.1
- old
+ new
@@ -1163,11 +1163,12 @@
service_id integer,
host_id integer,
updated_at timestamp without time zone,
critical boolean,
seen boolean,
- data text
+ data text,
+ vuln_id integer
);
--
-- Name: notes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
@@ -3259,10 +3260,17 @@
CREATE INDEX index_notes_on_ntype ON notes USING btree (ntype);
--
+-- Name: index_notes_on_vuln_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
+--
+
+CREATE INDEX index_notes_on_vuln_id ON notes USING btree (vuln_id);
+
+
+--
-- Name: index_refs_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX index_refs_on_name ON refs USING btree (name);
@@ -3679,9 +3687,11 @@
INSERT INTO schema_migrations (version) VALUES ('20150106201450');
INSERT INTO schema_migrations (version) VALUES ('20150112203945');
INSERT INTO schema_migrations (version) VALUES ('20150205192745');
+
+INSERT INTO schema_migrations (version) VALUES ('20150209195939');
INSERT INTO schema_migrations (version) VALUES ('20150212214222');
INSERT INTO schema_migrations (version) VALUES ('21');
\ No newline at end of file