Update schema.rb

MSP-10654
This commit is contained in:
Luke Imhoff
2014-07-07 09:41:46 -05:00
parent e9436743e8
commit d7908e3050
+12 -2
View File
@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20140605173747) do
ActiveRecord::Schema.define(:version => 20140703144541) do
create_table "api_keys", :force => true do |t|
t.text "token"
@@ -28,6 +28,16 @@ ActiveRecord::Schema.define(:version => 20140605173747) do
t.datetime "updated_at"
end
create_table "credential_cores_tasks", :id => false, :force => true do |t|
t.integer "core_id"
t.integer "task_id"
end
create_table "credential_logins_tasks", :id => false, :force => true do |t|
t.integer "login_id"
t.integer "task_id"
end
create_table "creds", :force => true do |t|
t.integer "service_id", :null => false
t.datetime "created_at", :null => false
@@ -208,7 +218,7 @@ ActiveRecord::Schema.define(:version => 20140605173747) do
create_table "metasploit_credential_origin_imports", :force => true do |t|
t.text "filename", :null => false
t.integer "task_id", :null => false
t.integer "task_id"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end