From 1429bf116f5926b2578b79f836d6fb37ce1da36e Mon Sep 17 00:00:00 2001 From: Rimian Perkins Date: Thu, 28 Nov 2019 19:51:03 +1100 Subject: [PATCH] rubocop --- db/migrate/20191127233735_add_product_to_customer.rb | 2 ++ db/migrate/20191128044206_remove_customer_index.rb | 2 ++ 2 files changed, 4 insertions(+) diff --git a/db/migrate/20191127233735_add_product_to_customer.rb b/db/migrate/20191127233735_add_product_to_customer.rb index b4932e5..2cc1660 100644 --- a/db/migrate/20191127233735_add_product_to_customer.rb +++ b/db/migrate/20191127233735_add_product_to_customer.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + class AddProductToCustomer < ActiveRecord::Migration[6.0] def change add_column :discourse_patrons_customers, :product_id, :string diff --git a/db/migrate/20191128044206_remove_customer_index.rb b/db/migrate/20191128044206_remove_customer_index.rb index b40cfe4..5365f85 100644 --- a/db/migrate/20191128044206_remove_customer_index.rb +++ b/db/migrate/20191128044206_remove_customer_index.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + class RemoveCustomerIndex < ActiveRecord::Migration[6.0] def change remove_index :discourse_patrons_customers, :customer_id