Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AddExpiredAtToAccountResetRequests < ActiveRecord::Migration[8.0]
def change
add_column :account_reset_requests, :expired_at, :datetime, comment: 'sensitive=false'
end
end
3 changes: 2 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema[8.0].define(version: 2025_06_11_195441) do
ActiveRecord::Schema[8.0].define(version: 2025_06_24_160521) do
# These are extensions that must be enabled in order to support this database
enable_extension "citext"
enable_extension "pg_catalog.plpgsql"
Expand All @@ -33,6 +33,7 @@
t.datetime "created_at", precision: nil, null: false, comment: "sensitive=false"
t.datetime "updated_at", precision: nil, null: false, comment: "sensitive=false"
t.string "requesting_issuer", comment: "sensitive=false"
t.datetime "expired_at", comment: "sensitive=false"
t.index ["cancelled_at", "granted_at", "requested_at"], name: "index_account_reset_requests_on_timestamps"
t.index ["granted_token"], name: "index_account_reset_requests_on_granted_token", unique: true
t.index ["request_token"], name: "index_account_reset_requests_on_request_token", unique: true
Expand Down