Commit e6b66627 authored by Stan Hu's avatar Stan Hu

Geo: Fix incorrect datetime_with_timezone schema

The migration used datetime_with_timezone, but the schema used datetime.
parent a8ab66c3
...@@ -75,7 +75,7 @@ ActiveRecord::Schema.define(version: 20180427114641) do ...@@ -75,7 +75,7 @@ ActiveRecord::Schema.define(version: 20180427114641) do
t.boolean "repository_checksum_mismatch", default: false, null: false t.boolean "repository_checksum_mismatch", default: false, null: false
t.boolean "wiki_checksum_mismatch", default: false, null: false t.boolean "wiki_checksum_mismatch", default: false, null: false
t.boolean "last_repository_check_failed" t.boolean "last_repository_check_failed"
t.datetime "last_repository_check_at" t.datetime_with_timezone "last_repository_check_at"
end end
add_index "project_registry", ["last_repository_successful_sync_at"], name: "index_project_registry_on_last_repository_successful_sync_at", using: :btree add_index "project_registry", ["last_repository_successful_sync_at"], name: "index_project_registry_on_last_repository_successful_sync_at", 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