* Enable strong-migrations in production * Disable environment checks in initializers * Remove misleading description
5 lines
157 B
Ruby
5 lines
157 B
Ruby
class RemoveUserOrganizationId < ActiveRecord::Migration[5.2]
|
|
def change
|
|
safety_assured { remove_column :users, :organization_id, :integer }
|
|
end
|
|
end
|