-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ManageIQ:master' into add_regex_message_field
- Loading branch information
Showing
3 changed files
with
16 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ name: CI | |
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
|
14 changes: 14 additions & 0 deletions
14
db/migrate/20220401093502_create_physical_server_profiles.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,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 |
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