Retrospring/db/migrate/20200517190138_rename_crop_...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
544 B
Ruby
Raw Normal View History

2023-10-19 16:37:34 -07:00
# frozen_string_literal: true
class RenameCropFields < ActiveRecord::Migration[5.2]
2020-05-21 13:32:36 -07:00
def change
rename_column :users, :crop_h, :profile_picture_h
rename_column :users, :crop_w, :profile_picture_w
rename_column :users, :crop_x, :profile_picture_x
rename_column :users, :crop_y, :profile_picture_y
rename_column :users, :crop_h_h, :profile_header_h
rename_column :users, :crop_h_w, :profile_header_w
rename_column :users, :crop_h_x, :profile_header_x
rename_column :users, :crop_h_y, :profile_header_y
end
end