Fix typo in migration example from 'uesrs' to 'users' (#4068)

This commit is contained in:
Kevin R 2025-10-22 10:40:50 -07:00 committed by GitHub
parent 946b6d4d16
commit a802da0e67
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -80,7 +80,7 @@ impl Migrator {
/// // Define your migrations.
/// // You can also use include_str!("./xxx.sql") instead of hard-coded SQL statements.
/// let migrations = vec![
/// Migration::new(1, "user".into(), ReversibleUp, "create table uesrs ( ... )".into_sql_str(), false),
/// Migration::new(1, "user".into(), ReversibleUp, "create table users ( ... )".into_sql_str(), false),
/// Migration::new(2, "post".into(), ReversibleUp, "create table posts ( ... )".into_sql_str(), false),
/// // add more...
/// ];