6 lines
120 B
Ruby
6 lines
120 B
Ruby
|
class AddImageToAsciicasts < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :asciicasts, :image, :string
|
||
|
end
|
||
|
end
|