2020-04-19 09:10:31 -07:00
|
|
|
class AddAttachmentProfileHeaderToUsers < ActiveRecord::Migration[4.2]
|
2015-05-08 08:44:16 -07:00
|
|
|
def change
|
|
|
|
change_table :users do |t|
|
|
|
|
t.attachment :profile_header
|
|
|
|
t.boolean :profile_header_processing
|
|
|
|
t.integer :crop_h_x
|
|
|
|
t.integer :crop_h_y
|
|
|
|
t.integer :crop_h_w
|
|
|
|
t.integer :crop_h_h
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|