diff options
author | Sean McGivern <sean@mcgivern.me.uk> | 2018-01-02 12:33:42 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2018-01-02 12:33:42 +0000 |
commit | 81dcd8ed8f71968215c7e776da482e83823c8b74 (patch) | |
tree | fdc1ab89e688b4bf2812007b8c84cf2b539bc850 /db/schema.rb | |
parent | 91864a92b9821f43c4551f96c6af8dff49bbedaa (diff) | |
parent | d2ebc9b931d12cb2cb120d6f7c940744bc1be39c (diff) | |
download | gitlab-ce-81dcd8ed8f71968215c7e776da482e83823c8b74.tar.gz |
Merge branch '39289-local-schema-rb-automatically-reverts-datetime-to-datetime_with_timezone-after-migrations' into 'master'
Prevent schema.rb reverting from datetime_with_timezone to datetime
Closes #39289
See merge request gitlab-org/gitlab-ce!14956
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/db/schema.rb b/db/schema.rb index aa5db5da4f0..88885f706b7 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -657,8 +657,8 @@ ActiveRecord::Schema.define(version: 20171220191323) do t.datetime "created_at" t.datetime "updated_at" t.string "confirmation_token" - t.datetime "confirmed_at" - t.datetime "confirmation_sent_at" + t.datetime_with_timezone "confirmed_at" + t.datetime_with_timezone "confirmation_sent_at" end add_index "emails", ["confirmation_token"], name: "index_emails_on_confirmation_token", unique: true, using: :btree @@ -1770,8 +1770,8 @@ ActiveRecord::Schema.define(version: 20171220191323) do add_index "user_agent_details", ["subject_id", "subject_type"], name: "index_user_agent_details_on_subject_id_and_subject_type", using: :btree create_table "user_custom_attributes", force: :cascade do |t| - t.datetime "created_at", null: false - t.datetime "updated_at", null: false + t.datetime_with_timezone "created_at", null: false + t.datetime_with_timezone "updated_at", null: false t.integer "user_id", null: false t.string "key", null: false t.string "value", null: false |