This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #354 from ZeroPointEnergy/new_report_format_support
New report format support
- Loading branch information
Showing
25 changed files
with
3,057 additions
and
299 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class AddEnvironmentToReports < ActiveRecord::Migration[4.2] | ||
def change | ||
add_column :reports, :environment, :string | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class AddTransactionUuidToReports < ActiveRecord::Migration[4.2] | ||
def change | ||
add_column :reports, :transaction_uuid, :string | ||
end | ||
end |
5 changes: 5 additions & 0 deletions
5
db/migrate/20150406035704_add_containment_path_to_resource_statuses.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class AddContainmentPathToResourceStatuses < ActiveRecord::Migration[4.2] | ||
def change | ||
add_column :resource_statuses, :containment_path, :text | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class AddCatalogUuidToReports < ActiveRecord::Migration[5.2] | ||
def change | ||
add_column :reports, :catalog_uuid, :string | ||
end | ||
end |
5 changes: 5 additions & 0 deletions
5
db/migrate/20180612210310_add_cached_catalog_status_to_reports.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class AddCachedCatalogStatusToReports < ActiveRecord::Migration[5.2] | ||
def change | ||
add_column :reports, :cached_catalog_status, :string | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
class AddReportFormat6 < ActiveRecord::Migration[5.2] | ||
def change | ||
add_column :reports, :noop, :boolean | ||
add_column :reports, :noop_pending, :boolean | ||
add_column :reports, :corrective_change, :boolean | ||
add_column :reports, :master_used, :string | ||
|
||
add_column :resource_statuses, :corrective_change, :boolean | ||
|
||
add_column :resource_events, :corrective_change, :boolean | ||
add_column :resource_events, :redacted, :boolean | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class AddReportFormat8 < ActiveRecord::Migration[5.2] | ||
def change | ||
add_column :reports, :transaction_completed, :boolean | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class AddReportFormat9 < ActiveRecord::Migration[5.2] | ||
def change | ||
add_column :resource_statuses, :provider_used, :string | ||
end | ||
end |
Oops, something went wrong.