diff --git a/db/migrate/20210728101948_change_type_of_payment_method_id_and_user_id_for_spree_checks.rb b/db/migrate/20210728101948_change_type_of_payment_method_id_and_user_id_for_spree_checks.rb new file mode 100644 index 00000000..38827d14 --- /dev/null +++ b/db/migrate/20210728101948_change_type_of_payment_method_id_and_user_id_for_spree_checks.rb @@ -0,0 +1,8 @@ +class ChangeTypeOfPaymentMethodIdAndUserIdForSpreeChecks < ActiveRecord::Migration[4.2] + def change + change_table(:spree_checks) do |t| + t.change :payment_method_id, :bigint + t.change :user_id, :bigint + end + end +end