1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/db/migrate/20140610153123_add_stp_customer_id_to_users.rb

18 lines
380 B
Ruby
Raw Normal View History

# frozen_string_literal:true
class AddStpCustomerIdToUsers < ActiveRecord::Migration[4.2]
2016-03-23 18:39:41 +01:00
def up
add_column :users, :stp_customer_id, :string
2023-07-28 16:16:44 +02:00
User.reset_column_information
2016-03-23 18:39:41 +01:00
User.all.each do |user|
if user.stp_customer_id.blank?
user.send(:create_stripe_customer)
end
end
end
def down
remove_column :users, :stp_customer_id
end
end