From d688abd5c699cc9332422ae4b7b92bdf3d8d9a17 Mon Sep 17 00:00:00 2001 From: John Hawthorn Date: Thu, 23 Feb 2017 15:52:08 -0800 Subject: [PATCH] Remove spree_store_credits column There was a spree_store_credits column on the spree_store_credits table because of a mistake in the original store credits migration. This removes that column. --- .../20170223235001_remove_spree_store_credits_column.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 core/db/migrate/20170223235001_remove_spree_store_credits_column.rb diff --git a/core/db/migrate/20170223235001_remove_spree_store_credits_column.rb b/core/db/migrate/20170223235001_remove_spree_store_credits_column.rb new file mode 100644 index 00000000000..464d786f18e --- /dev/null +++ b/core/db/migrate/20170223235001_remove_spree_store_credits_column.rb @@ -0,0 +1,5 @@ +class RemoveSpreeStoreCreditsColumn < ActiveRecord::Migration[5.0] + def change + remove_column :spree_store_credits, :spree_store_credits, :datetime + end +end