Mercurial > hg > soundsoftware-site
view db/migrate/048_allow_null_version_effective_date.rb @ 1131:2681af99688f redmine-2.2-integration
Fixed RedmineTags routes file (new Rails version standard).
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Wed, 09 Jan 2013 11:53:24 +0000 |
parents | 513646585e45 |
children |
line wrap: on
line source
class AllowNullVersionEffectiveDate < ActiveRecord::Migration def self.up change_column :versions, :effective_date, :date, :default => nil, :null => true end def self.down raise IrreversibleMigration end end