forked from External/greenlight
12 lines
222 B
Ruby
12 lines
222 B
Ruby
class AddAttachmentBackgroundToUsers < ActiveRecord::Migration
|
|
def self.up
|
|
change_table :users do |t|
|
|
t.attachment :background
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
remove_attachment :users, :background
|
|
end
|
|
end
|