jokes-api/db/migrate/20151012201008_add_punchline_to_jokes.rb
2015-10-12 16:30:43 -04:00

5 lines
118 B
Ruby

class AddPunchlineToJokes < ActiveRecord::Migration
def change
add_column :jokes, :punchline, :string
end
end