blob: f4e107848d95583a0123b07c99d04bd9b9d136e8 (
plain)
1
2
3
4
5
6
7
8
9
|
class AllowNullProfilePhotoUser < ActiveRecord::Migration
def self.up
change_column :profile_photos, :user_id, :integer, :null => true
end
def self.down
raise "No reverse migration"
end
end
|