//! Example SeaORM migrations for tideway-auth.
//!
//! Copy these migrations to your project's migration folder and adapt as needed.
//!
//! # Tables
//!
//! - `users` - User accounts with password hashes
//! - `refresh_token_families` - Token rotation tracking
//! - `user_mfa` - TOTP secrets and backup codes
//! - `verification_tokens` - Email verification and password reset tokens
//!
//! # Usage
//!
//! 1. Copy the migration files to your `migration/src/` folder
//! 2. Add them to your `Migrator` in `migration/src/lib.rs`
//! 3. Run migrations with `sea-orm-cli migrate up`
pub use Migration as M001CreateUsers;
pub use Migration as M002CreateRefreshTokens;
pub use Migration as M003CreateMfa;
pub use Migration as M004CreateVerificationTokens;