class UpdatePrograms < ActiveRecord::Migration[5.0]
  def change
  	add_reference :programs, :plan, foreign_key: true, type: :uuid
  	remove_column :programs, :key_code
  	add_column :programs, :title, :string, null: false, default: ""
  	add_column :programs, :number, :integer, null: false, default: 1
  	add_column :programs, :tipo, :string, null: false, default: ""
  end
end