CMSgov/dpc-app

View on GitHub
dpc-web/db/migrate/20200715203040_add_enabled_to_registered_organizations.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddEnabledToRegisteredOrganizations < ActiveRecord::Migration[6.0]
  def change
    add_column :registered_organizations, :enabled, :boolean, :default => true, null: false
  end
end