Create a virtual schema for todos table (schemaless)
(&self)
| 250 | |
| 251 | /// Create a virtual schema for todos table (schemaless) |
| 252 | fn todos_schema(&self) -> Schema { |
| 253 | Schema { |
| 254 | table_name: "todos".to_string(), |
| 255 | column_defs: None, // Schemaless |
| 256 | indexes: Vec::new(), |
| 257 | engine: None, |
| 258 | foreign_keys: Vec::new(), |
| 259 | comment: Some("Virtual table merging all todo files".to_string()), |
| 260 | } |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | /// Convert a finished [`SessionAggregate`] into a `sessions` table DataRow |
no outgoing calls
no test coverage detected