class CreateEdfiIndicators < ActiveRecord::Migration[6.0]
  def change
    create_table :EdFi_Indicators, primary_key: :IndicatorID do |t|
      t.string :Indicator, null: false, limit: 200
      t.string :CodeValue, null: false, limit: 35
      t.string :Name, null: false
      t.string :GroupName, null: false

      t.index :Indicator
    end
  end
end
