f2afb2f637
People should opt-in to getting new card notifications
6 lines
162 B
Ruby
6 lines
162 B
Ruby
class ChangeDefaultInvolvementToAccessOnly < ActiveRecord::Migration[8.1]
|
|
def change
|
|
change_column_default :accesses, :involvement, "access_only"
|
|
end
|
|
end
|