Skip to content

Commit

Permalink
Change payment_method_id and user_id into bigint
Browse files Browse the repository at this point in the history
  • Loading branch information
szymoniwacz committed Jul 29, 2021
1 parent ac06e62 commit ff81fe5
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ff81fe5

Please sign in to comment.