1
0
mirror of https://github.com/danbee/danbarberphoto synced 2025-03-04 08:49:07 +00:00
danbarberphoto/db/migrate/20101013165208_photo_showcase.rb

10 lines
197 B
Ruby

class PhotoShowcase < ActiveRecord::Migration
def self.up
add_column :photos, :featured, :boolean, :default => false
end
def self.down
remove_column :photos, :featured
end
end