Update log DB schema

This commit is contained in:
Artur Beljajev 2016-12-28 17:10:12 +02:00
parent c1cb598da1
commit cab378d154

View file

@ -27,8 +27,11 @@ ActiveRecord::Schema.define(version: 0) do
t.string "ip", limit: 255
t.datetime "created_at"
t.datetime "updated_at"
t.string "uuid"
end
add_index "epp_logs", ["uuid"], name: "epp_logs_uuid", using: :btree
create_table "repp_logs", force: :cascade do |t|
t.string "request_path", limit: 255
t.string "request_method", limit: 255
@ -40,6 +43,9 @@ ActiveRecord::Schema.define(version: 0) do
t.string "ip", limit: 255
t.datetime "created_at"
t.datetime "updated_at"
t.string "uuid"
end
add_index "repp_logs", ["uuid"], name: "repp_logs_uuid", using: :btree
end