Commit a2018a3f authored by Ash McKenzie's avatar Ash McKenzie

Resolve conflicts in db/schema.rb

parent 23ef12a2
......@@ -1982,15 +1982,11 @@ ActiveRecord::Schema.define(version: 20180509091305) do
add_index "project_import_data", ["project_id"], name: "index_project_import_data_on_project_id", using: :btree
create_table "project_mirror_data", force: :cascade do |t|
<<<<<<< HEAD
t.integer "project_id"
t.integer "project_id", null: false
t.integer "retry_count", default: 0, null: false
t.datetime "last_update_started_at"
t.datetime "last_update_scheduled_at"
t.datetime "next_execution_timestamp"
=======
t.integer "project_id", null: false
>>>>>>> upstream/master
t.string "status"
t.string "jid"
t.datetime_with_timezone "last_update_at"
......@@ -1999,11 +1995,8 @@ ActiveRecord::Schema.define(version: 20180509091305) do
end
add_index "project_mirror_data", ["jid"], name: "index_project_mirror_data_on_jid", using: :btree
<<<<<<< HEAD
add_index "project_mirror_data", ["last_successful_update_at"], name: "index_project_mirror_data_on_last_successful_update_at", using: :btree
add_index "project_mirror_data", ["next_execution_timestamp", "retry_count"], name: "index_mirror_data_on_next_execution_and_retry_count", using: :btree
=======
>>>>>>> upstream/master
add_index "project_mirror_data", ["project_id"], name: "index_project_mirror_data_on_project_id", unique: true, using: :btree
add_index "project_mirror_data", ["status"], name: "index_project_mirror_data_on_status", using: :btree
......
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