view db/migrate/20110331152140_add_has_welcome_page_to_projects.rb @ 1385:bfef1bf3bedd luisf

Correctly renders the title of an the activities#index view. Fixes Issue #750.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Fri, 20 Sep 2013 19:54:06 +0100
parents dde1d4de8b32
children
line wrap: on
line source
class AddHasWelcomePageToProjects < ActiveRecord::Migration
  def self.up
    add_column :projects, :has_welcome_page, :boolean
  end

  def self.down
    remove_column :projects, :has_welcome_page
  end
end