a7d0816933
Step 1: * Add milestone_id in the model for merge_requests * Make it possible to create or update a Merge Request with an attached Milestone detail * Add the possibility to filter by Milestone and / or Assignee in the Merge Requests listing page
6 lines
156 B
Ruby
6 lines
156 B
Ruby
class AddMilestoneIdToMergeRequests < ActiveRecord::Migration
|
|
def change
|
|
add_column :merge_requests, :milestone_id, :integer, :null => true
|
|
end
|
|
end
|