gitlabhq/db/migrate/20110923211333_add_status_to_issue.rb

6 lines
149 B
Ruby
Raw Normal View History

2011-10-08 23:36:38 +02:00
class AddStatusToIssue < ActiveRecord::Migration
def change
add_column :issues, :closed, :boolean, :default => false, :null => false
end
end