gitlabhq/db/migrate/20111124115339_add_extra_field_to_issue.rb
2011-11-24 08:08:20 -05:00

6 lines
137 B
Ruby

class AddExtraFieldToIssue < ActiveRecord::Migration
def change
add_column :issues, :branch_name, :string, :null => true
end
end