Skip to content

Commit

Permalink
Merge pull request #45 from israel-hdez/middleware_reports
Browse files Browse the repository at this point in the history
Create table to store list of jdr reports for a middleware server
  • Loading branch information
Fryguy authored Aug 22, 2017
2 parents 267c684 + 519f711 commit a1533a9
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
12 changes: 12 additions & 0 deletions db/migrate/20170720194715_create_middleware_diagnostic_reports.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
class CreateMiddlewareDiagnosticReports < ActiveRecord::Migration[5.0]
def change
create_table :middleware_diagnostic_reports do |t|
t.datetime :queued_at
t.string :requesting_user
t.string :status
t.string :error_message
t.references(:middleware_server, :type => :bigint)
t.timestamps
end
end
end
9 changes: 9 additions & 0 deletions db/schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4670,6 +4670,15 @@ middleware_deployments:
- properties
- server_group_id
- type
middleware_diagnostic_reports:
- id
- queued_at
- requesting_user
- status
- error_message
- middleware_server_id
- created_at
- updated_at
middleware_domains:
- id
- name
Expand Down

0 comments on commit a1533a9

Please sign in to comment.