* Initial user payment pointer work * Finalize functionality and tests * Fix schema * Update app/views/shared/_payment_pointer.html.erb * Add function to list
5 lines
134 B
Ruby
5 lines
134 B
Ruby
class AddPaymentPointerToUsers < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :users, :payment_pointer, :string
|
|
end
|
|
end
|