view db/migrate/073_add_enumerations_is_default.rb @ 675:fccacd8505e3 live

Incomplete solution for Feature #238 - some issues in toggling (specially in the edit view).
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 13 Sep 2011 17:02:51 +0100
parents 513646585e45
children
line wrap: on
line source
class AddEnumerationsIsDefault < ActiveRecord::Migration
  def self.up
    add_column :enumerations, :is_default, :boolean, :default => false, :null => false
  end

  def self.down
    remove_column :enumerations, :is_default
  end
end