Commit 8d403ef6 authored by Mark Chao's avatar Mark Chao

Add _date_from_milestone_id column

Tracking which milestone the milestone dates are sourced from
parent 646a37be
......@@ -955,9 +955,11 @@ ActiveRecord::Schema.define(version: 20180803001726) do
t.text "description"
t.text "description_html"
t.boolean "start_date_is_fixed"
t.boolean "due_date_is_fixed"
t.date "start_date_fixed"
t.integer "start_date_sourcing_milestone_id"
t.boolean "due_date_is_fixed"
t.date "due_date_fixed"
t.integer "due_date_sourcing_milestone_id"
end
add_index "epics", ["assignee_id"], name: "index_epics_on_assignee_id", using: :btree
......
......@@ -6,9 +6,11 @@ class AddDateColumnsToEpics < ActiveRecord::Migration
def change
change_table :epics do |t|
t.boolean :start_date_is_fixed
t.boolean :due_date_is_fixed
t.date :start_date_fixed
t.references :start_date_sourcing_milestone
t.boolean :due_date_is_fixed
t.date :due_date_fixed
t.references :due_date_sourcing_milestone
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment