spec/dummy/db/structure.sql in metasploit-credential-1.0.0 vs spec/dummy/db/structure.sql in metasploit-credential-1.0.1

- old
+ new

@@ -2004,11 +2004,13 @@ name character varying(255), updated_at timestamp without time zone, info character varying(65536), exploited_at timestamp without time zone, vuln_detail_count integer DEFAULT 0, - vuln_attempt_count integer DEFAULT 0 + vuln_attempt_count integer DEFAULT 0, + origin_id integer, + origin_type character varying(255) ); -- -- Name: vulns_id_seq; Type: SEQUENCE; Schema: public; Owner: - @@ -3661,10 +3663,17 @@ CREATE INDEX index_vulns_on_name ON vulns USING btree (name); -- +-- Name: index_vulns_on_origin_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- + +CREATE INDEX index_vulns_on_origin_id ON vulns USING btree (origin_id); + + +-- -- Name: index_web_forms_on_path; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_web_forms_on_path ON web_forms USING btree (path); @@ -4062,9 +4071,11 @@ INSERT INTO schema_migrations (version) VALUES ('20150317145455'); INSERT INTO schema_migrations (version) VALUES ('20150326183742'); INSERT INTO schema_migrations (version) VALUES ('20150421211719'); + +INSERT INTO schema_migrations (version) VALUES ('20150514182921'); INSERT INTO schema_migrations (version) VALUES ('21'); INSERT INTO schema_migrations (version) VALUES ('22');