foreman_leapp 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb1ec372e0809f17969a87b77b81686ac2efd8051074819f36c4e0b4ba34a2c3
4
- data.tar.gz: 87d8d9fd54617cca22e0738aae5a4be74db664bac2319310d2d0b44545f622f4
3
+ metadata.gz: bf4504120077006e5ca8edc0f997e6ab1d8b66f990b78391c13a4ffb967c261b
4
+ data.tar.gz: b3db74a5763028634de4442930773da3fac4fd8b367d675644ec3a6f5f5c7123
5
5
  SHA512:
6
- metadata.gz: a8a58f58adb0fb6760afd60d3a001cb6751ec3af5ed5b293ed5155170262d4dadec5438b90de9082301dabcb22740114afd40512820911f0dc0e557c4b9bfb94
7
- data.tar.gz: 0f4ba585bbdb2cb95ebb2cb21c7892c156a7da7b8a8e29353a3763cc53ac20884da6ab67deeb36a7ffc7eb8c209abd59f9e47067522ca4b430abed172194f12f
6
+ metadata.gz: ba709bb8fd26100eb0a10e782f6ba46e073d640d0b0822c6c563593934d6f0aeefda70bbfe18cbfcd0c0ba4407a3639af17d2050bb81c5a1a58e9893fa2d20bd
7
+ data.tar.gz: e77c7cd51c28a2f67356e06e7bdb84b07fa721064eee9b6e0d0ece65ef7b7ac743484119cb6e3d8b77a6f34795c1f55fe83b543efe0ba5129136ad764a9ee3de
@@ -1,6 +1,12 @@
1
1
  class AddHostToReport < ActiveRecord::Migration[5.2]
2
- def change
3
- add_column :preupgrade_report_entries, :host_id, :integer, null: false
2
+ def up
3
+ add_column :preupgrade_report_entries, :host_id, :integer
4
+ change_column :preupgrade_report_entries, :host_id, :integer, null: false
4
5
  add_index :preupgrade_report_entries, :host_id
5
6
  end
7
+
8
+ def down
9
+ remove_index :preupgrade_report_entries, :host_id
10
+ remove_column :preupgrade_report_entries, :host_id
11
+ end
6
12
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ForemanLeapp
4
- VERSION = '0.0.2'
4
+ VERSION = '0.0.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_leapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Foreman Leapp team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-14 00:00:00.000000000 Z
11
+ date: 2020-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: foreman_remote_execution