mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 14:39:52 +01:00
12 lines
436 B
Ruby
12 lines
436 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemovePaperclipFields < ActiveRecord::Migration[5.2]
|
|
def change
|
|
remove_column :users, :profile_picture_content_type
|
|
remove_column :users, :profile_picture_file_size
|
|
remove_column :users, :profile_picture_updated_at
|
|
remove_column :users, :profile_header_content_type
|
|
remove_column :users, :profile_header_file_size
|
|
remove_column :users, :profile_header_updated_at
|
|
end
|
|
end
|