socialforge/db/migrate/20140725062302_add_column.rb

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