disable field not in use

This commit is contained in:
yggverse 2024-10-04 19:23:00 +03:00
parent bdd1292039
commit 00e916dc7c

View File

@ -3,7 +3,7 @@ use std::sync::Arc;
pub struct Table {
pub id: i64,
pub time: i64,
// pub time: i64,
}
pub struct Database {
@ -30,14 +30,9 @@ impl Database {
}
pub fn records(&self) -> Result<Vec<Table>, Error> {
let mut statement = self.connection.prepare("SELECT `id`, `time` FROM `app`")?;
let mut statement = self.connection.prepare("SELECT `id` FROM `app`")?;
let result = statement.query_map([], |row| {
Ok(Table {
id: row.get(0)?,
time: row.get(1)?,
})
})?;
let result = statement.query_map([], |row| Ok(Table { id: row.get(0)? }))?;
let mut records = Vec::new();