docbrown/db/migrate/20200605170430_add_payment_pointer_to_users.rb
Ben Halpern c1dca335c7
[deploy] Allow users to set a payment pointer for their content (#8304)
* Initial user payment pointer work

* Finalize functionality and tests

* Fix schema

* Update app/views/shared/_payment_pointer.html.erb

* Add function to list
2020-06-09 16:28:16 -04:00

5 lines
134 B
Ruby

class AddPaymentPointerToUsers < ActiveRecord::Migration[6.0]
def change
add_column :users, :payment_pointer, :string
end
end