6 lines
142 B
Ruby
6 lines
142 B
Ruby
class RemoveJoinCodeFromMemberships < ActiveRecord::Migration[8.2]
|
|
def change
|
|
remove_column :memberships, :join_code, :string
|
|
end
|
|
end
|