mirror of
https://github.com/nushell/nushell.git
synced 2025-07-12 20:35:18 +02: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>,
|
|
}
|