fix(sqlite): i64 -> u64 in type docs

This commit is contained in:
Ryan Leckey 2021-01-13 23:35:31 -08:00 committed by GitHub
parent b02c6c59cf
commit 2a80700813
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@
//! | `u8` | INTEGER |
//! | `u16` | INTEGER |
//! | `u32` | INTEGER |
//! | `i64` | BIGINT, INT8 |
//! | `u64` | BIGINT, INT8 |
//! | `f32` | REAL |
//! | `f64` | REAL |
//! | `&str`, [`String`] | TEXT |