OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/modules/bim/db/migrate/20191119144123_add_issue_co...

9 lines
212 B

class AddIssueColumns < ActiveRecord::Migration[6.0]
def change
change_table :bcf_issues do |i|
i.string :stage
i.integer :index
i.text :labels, array: true, default: []
end
end
end