forked from ManageIQ/manageiq-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This was added back in 2008 in commit d866a691c57073d44d24eba284f962e62f87a706 and isn't used. It was never reportable but was available in the API. Part of ManageIQ/manageiq#21204
- Loading branch information
Showing
2 changed files
with
20 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
class DropLifecycleEvents < ActiveRecord::Migration[6.0] | ||
def up | ||
drop_table :lifecycle_events | ||
end | ||
|
||
def down | ||
create_table "lifecycle_events", force: :cascade do |t| | ||
t.string "guid" | ||
t.string "status" | ||
t.string "event" | ||
t.string "message" | ||
t.string "location" | ||
t.bigint "vm_or_template_id" | ||
t.string "created_by" | ||
t.datetime "created_on" | ||
t.index ["guid"], name: "index_lifecycle_events_on_guid", unique: true | ||
t.index ["vm_or_template_id"], name: "index_lifecycle_events_on_vm_id" | ||
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