CMSgov/dpc-app

View on GitHub
dpc-web/db/migrate/20190918195816_create_organizations.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateOrganizations < ActiveRecord::Migration[5.2]
  def change
    create_table :organizations do |t|
      t.string :name, null: false
      t.integer :organization_type, null: false
      t.integer :num_providers, default: 0

      t.timestamps
    end
  end
end