I don't think this feature it was ever used. It was introduced in commit49dec6061as part of a feature that was removed in commits1cd47da9dandc45a0bd8ac.
6 lines
138 B
Ruby
6 lines
138 B
Ruby
class RemoveUsersRedeemableCode < ActiveRecord::Migration[7.0]
|
|
def change
|
|
remove_column :users, :redeemable_code, :string
|
|
end
|
|
end
|