Skip to main content

seaorm_soft_delete/
lib.rs

1mod active_model;
2mod entity;
3mod model;
4#[cfg(feature = "migration")]
5mod migration;
6
7pub use active_model::SoftDeleteActiveModel;
8pub use entity::SoftDeleteEntity;
9pub use model::SoftDeleteModel;
10#[cfg(feature = "migration")]
11pub use migration::SoftDeleteMigration;
12#[cfg(feature = "migration")]
13pub use migration::SOFT_DELETE_COLUMN;