class CreateSpeeches < ActiveRecord::Migration[6.1]
  def change
    create_table :speeches do |t|
      t.string :key_url,  default: ""
      t.string :title,    default: ""
      t.string :section,  default: ""
      t.text :speech

    end
  end
end