Skip to content

Commit 51a89c3

Browse files
committed
Merge pull request rapid7#1841 from lsanchez-r7/bug/cannot_delete_vuln_refs_zero_length_delimiter
Update to metasploit_data_models 0.14.2
2 parents 41e2396 + abb73dd commit 51a89c3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ group :db do
1515
# Needed for Msf::DbManager
1616
gem 'activerecord'
1717
# Database models shared between framework and Pro.
18-
gem 'metasploit_data_models', '~> 0.14.1'
18+
gem 'metasploit_data_models', '~> 0.14.2'
1919
# Needed for module caching in Mdm::ModuleDetails
2020
gem 'pg', '>= 0.11'
2121
end

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ GEM
2323
i18n (0.6.1)
2424
json (1.7.7)
2525
metaclass (0.0.1)
26-
metasploit_data_models (0.14.1)
26+
metasploit_data_models (0.14.2)
2727
activerecord (>= 3.2.13)
2828
activesupport
2929
pg
@@ -65,7 +65,7 @@ DEPENDENCIES
6565
database_cleaner
6666
factory_girl (>= 4.1.0)
6767
json
68-
metasploit_data_models (~> 0.14.1)
68+
metasploit_data_models (~> 0.14.2)
6969
msgpack
7070
nokogiri
7171
pcaprub

db/schema.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
# It's strongly recommended to check this file into your version control system.
1313

14-
ActiveRecord::Schema.define(:version => 20130515172727) do
14+
ActiveRecord::Schema.define(:version => 20130516204810) do
1515

1616
create_table "api_keys", :force => true do |t|
1717
t.text "token"
@@ -511,7 +511,7 @@
511511

512512
add_index "vulns", ["name"], :name => "index_vulns_on_name"
513513

514-
create_table "vulns_refs", :id => false, :force => true do |t|
514+
create_table "vulns_refs", :force => true do |t|
515515
t.integer "ref_id"
516516
t.integer "vuln_id"
517517
end

0 commit comments

Comments
 (0)