From f77df0b9a853586be6a1948f7c9482fa3dbd6708 Mon Sep 17 00:00:00 2001 From: lpichler Date: Mon, 15 Oct 2018 21:13:28 +0200 Subject: [PATCH] Add tenant_id to miq_product_features --- ..._add_tenant_id_and_tenant_node_to_miq_product_features.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20181023171353_add_tenant_id_and_tenant_node_to_miq_product_features.rb diff --git a/db/migrate/20181023171353_add_tenant_id_and_tenant_node_to_miq_product_features.rb b/db/migrate/20181023171353_add_tenant_id_and_tenant_node_to_miq_product_features.rb new file mode 100644 index 000000000..114f8bd82 --- /dev/null +++ b/db/migrate/20181023171353_add_tenant_id_and_tenant_node_to_miq_product_features.rb @@ -0,0 +1,5 @@ +class AddTenantIdAndTenantNodeToMiqProductFeatures < ActiveRecord::Migration[5.0] + def change + add_reference :miq_product_features, :tenant, :type => :bigint, :index => true + end +end