Commit dfe844e9 authored by Mark Chao's avatar Mark Chao

Fix migration ordering

parent 13fac290
......@@ -954,12 +954,12 @@ ActiveRecord::Schema.define(version: 20180803001726) do
t.string "title_html", null: false
t.text "description"
t.text "description_html"
t.boolean "start_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"
t.date "start_date_fixed"
t.date "due_date_fixed"
t.boolean "start_date_is_fixed"
t.boolean "due_date_is_fixed"
end
add_index "epics", ["assignee_id"], name: "index_epics_on_assignee_id", using: :btree
......
......@@ -7,12 +7,12 @@ class AddDateColumnsToEpics < ActiveRecord::Migration
def change
change_table :epics do |t|
t.boolean :start_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
t.date :start_date_fixed
t.date :due_date_fixed
t.boolean :start_date_is_fixed
t.boolean :due_date_is_fixed
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