diff --git a/sqlx-core/src/sqlite/types/mod.rs b/sqlx-core/src/sqlite/types/mod.rs index 5ef8913d..c9eccbf1 100644 --- a/sqlx-core/src/sqlite/types/mod.rs +++ b/sqlx-core/src/sqlite/types/mod.rs @@ -17,14 +17,9 @@ //! //! Requires the `chrono` Cargo feature flag. //! -//! | Rust type | MySQL type(s) | +//! | Rust type | Sqlite type(s) | //! |---------------------------------------|------------------------------------------------------| -//! | `chrono::DateTime` | TIMESTAMP | -//! | `chrono::DateTime` | TIMETAMP | -//! | `chrono::NaiveDateTime` | DATETIME | -//! | `chrono::NaiveDate` | DATE | -//! | `chrono::NaiveTime` | TIME | - +//! | `chrono::NaiveDateTime` | TIMESTAMP | //! //! # Nullable //!