Skip to content

Commit 96d1fdb

Browse files
committed
Fix tests
1 parent 45592aa commit 96d1fdb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -788,6 +788,7 @@ fn delete_by_id<T>(values: T) -> DeleteMany<Self> // old
788788
fn delete_by_id<T>(values: T) -> ValidatedDeleteOne<Self> // new
789789
```
790790
* `DeriveActiveEnum` now also automatically impl `IntoActiveValue`, if you have a custom impl before, there would be a collision
791+
* `with-bigdecimal` is now removed from default features
791792

792793
### Upgrades
793794

tests/common/features/schema.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ pub async fn create_pi_table(db: &DbConn) -> Result<ExecResult, DbErr> {
561561
.col(ColumnDef::new(pi::Column::BigDecimalOpt).decimal_len(11, 10))
562562
.to_owned();
563563

564-
create_table(db, &stmt, Pi).await
564+
create_table(db, &stmt, pi::Entity).await
565565
}
566566

567567
pub async fn create_event_trigger_table(db: &DbConn) -> Result<ExecResult, DbErr> {

0 commit comments

Comments
 (0)