Skip to content

Commit

Permalink
Reorder enum values
Browse files Browse the repository at this point in the history
  • Loading branch information
spencewenski committed Dec 26, 2024
1 parent 4a0cc2f commit 9573914
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/migration/user/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ pub enum User {
LastSignInAt,
RecoverySentAt,
RecoveryToken,
/// The user's new email address that has not yet been confirmed.
PendingEmail,
EmailChangeSentAt,
/// Token sent to the new email to confirm it's a valid email and the user has access to it.
EmailChangeTokenNew,
/// Token sent to the current email to confirm the user authorized the email change.
EmailChangeTokenCurrent,
/// When the user was deleted.
DeletedAt,
/// The user's new email address that has not yet been confirmed.
PendingEmail,
}

/// The collection of migrations defined to create a `user` table. Relevant [MigrationTrait]s
Expand Down

0 comments on commit 9573914

Please sign in to comment.