5 lines
118 B
Ruby
5 lines
118 B
Ruby
class AddPunchlineToJokes < ActiveRecord::Migration
|
|
def change
|
|
add_column :jokes, :punchline, :string
|
|
end
|
|
end
|