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