Mercurial > hg > soundsoftware-site
view db/migrate/20110408103312_add_roles_issues_visibility.rb @ 441:cbce1fd3b1b7 redmine-1.2
Update to Redmine 1.2-stable branch (Redmine SVN rev 6000)
author | Chris Cannam |
---|---|
date | Mon, 06 Jun 2011 14:24:13 +0100 |
parents | |
children |
line wrap: on
line source
class AddRolesIssuesVisibility < ActiveRecord::Migration def self.up add_column :roles, :issues_visibility, :string, :limit => 30, :default => 'default', :null => false end def self.down remove_column :roles, :issues_visibility end end