From 333803c1ff440354433dc135aa1c47a875c343ab Mon Sep 17 00:00:00 2001 From: Felipe Sere Date: Mon, 6 Apr 2020 08:56:33 +0200 Subject: [PATCH] Correct table headings and only list types that are actually implemented --- sqlx-core/src/sqlite/types/mod.rs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) 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 //!