gitlabhq/db/migrate/20111124115339_add_extra_field_to_issue.rb

6 lines
137 B
Ruby
Raw Normal View History

2011-11-24 14:08:20 +01:00
class AddExtraFieldToIssue < ActiveRecord::Migration
def change
add_column :issues, :branch_name, :string, :null => true
end
end