Sha256: 8cfd708f077f8e75f54b4a7da4a270a8419e5e1739ee685b1d13c591578fb64e
Contents?: true
Size: 767 Bytes
Versions: 28
Compression:
Stored size: 767 Bytes
Contents
# Copyright © 2012 The Pennsylvania State University # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. class AddAvatarsToUsers < ActiveRecord::Migration def self.up add_attachment :users, :avatar end def self.down remove_attachment :users, :avatar end end
Version data entries
28 entries across 28 versions & 2 rubygems