forked from extern/nushell
Take more sensitive lints into account Somewhat ugly in some cases is the replacement of `.get(0)` with `.first()`
9 lines
268 B
Rust
9 lines
268 B
Rust
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
pub struct DbTable {
|
|
pub name: String,
|
|
pub create_time: Option<chrono::DateTime<chrono::Utc>>,
|
|
pub update_time: Option<chrono::DateTime<chrono::Utc>>,
|
|
pub engine: Option<String>,
|
|
pub schema: Option<String>,
|
|
}
|