Merge branch 'update-log-db-schema' into registry-267

This commit is contained in:
Artur Beljajev 2016-12-28 17:26:40 +02:00
commit ffd29f6a67

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