mirror of
https://github.com/redmine/redmine.git
synced 2026-03-08 05:30:45 +01:00
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/work@2148 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
208 B
Ruby
10 lines
208 B
Ruby
class AddProjectStatus < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :projects, :status, :integer, :default => 1, :null => false
|
|
end
|
|
|
|
def self.down
|
|
remove_column :projects, :status
|
|
end
|
|
end
|