Skip to content

Commit

Permalink
Merge branch 'ManageIQ:master' into add_regex_message_field
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilkr128 authored May 16, 2022
2 parents 6b488ee + ea1962f commit 16953aa
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: CI
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'

Expand Down
14 changes: 14 additions & 0 deletions db/migrate/20220401093502_create_physical_server_profiles.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
class CreatePhysicalServerProfiles < ActiveRecord::Migration[6.0]
def change
create_table :physical_server_profiles do |t|
t.references :ems, :type => :bigint, :index => true, :references => :ext_management_system
t.string :ems_ref
t.string :name
t.string :type, :index => true
t.references :assigned_server, :type => :bigint, :index => true, :references => :physical_server
t.references :associated_server, :type => :bigint, :index => true, :references => :physical_server

t.timestamps
end
end
end
1 change: 1 addition & 0 deletions spec/support/table_list.txt
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ physical_racks
physical_servers
physical_storage_families
physical_storages
physical_server_profiles
pictures
policy_event_contents
policy_events
Expand Down

0 comments on commit 16953aa

Please sign in to comment.