7 lines
197 B
Ruby
7 lines
197 B
Ruby
|
class AddColumn < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column("first_pages","image_width",:integer,default: 107)
|
||
|
add_column("first_pages","image_height",:integer,default: 63)
|
||
|
end
|
||
|
end
|