sasalatart/on-this-day-sinatra

View on GitHub
server/db/migrate/20170506202204_create_keywords.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateKeywords < ActiveRecord::Migration[5.0]
  def change
    create_table :keywords do |t|
      t.integer :episode_id, index: true
      t.string  :title
      t.string  :href
    end
  end
end