λ/dragon
λ/dragon
I think the `sea-orm-cli migrate up` only applies 1 pending migration. The source code of the `up` command has a default value `1` for the `num` option: ```rust #[clap(about =...
That's the expected behaviour according to the source code: ```rust async fn up(db: &DbConn, mut steps: Option) -> Result { Self::install(db).await?; let manager = SchemaManager::new(db); if let Some(steps) = steps...
hi @vedmant Thank you for reporting. Could you share your settings for my reproduction? FYI, I have tried the below setting, but couldn't reproduce the issue you described: ```vue import...