We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 946b6d4 commit a802da0Copy full SHA for a802da0
sqlx-core/src/migrate/migrator.rs
@@ -80,7 +80,7 @@ impl Migrator {
80
/// // Define your migrations.
81
/// // You can also use include_str!("./xxx.sql") instead of hard-coded SQL statements.
82
/// let migrations = vec![
83
- /// 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),
84
/// Migration::new(2, "post".into(), ReversibleUp, "create table posts ( ... )".into_sql_str(), false),
85
/// // add more...
86
/// ];
0 commit comments