mirror of
https://github.com/nushell/nushell.git
synced 2025-03-13 15:08:43 +01:00
9 lines
264 B
Rust
9 lines
264 B
Rust
#[derive(Debug, Clone, 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>,
|
|
}
|