diaspora/db/migrate/20111021184041_add_community_spotlight_in_stream.rb

14 lines
402 B
Ruby

class AddCommunitySpotlightInStream < ActiveRecord::Migration
def self.up
add_column :users, :show_community_spotlight_in_stream, :boolean, :null => false, :default => true
ActiveRecord::Base.connection.execute <<SQL
UPDATE users
SET show_community_spotlight_in_stream = false
SQL
end
def self.down
remove_column :users , :show_community_spotlight_in_stream
end
end