nu-command 0.75.0

Nushell's built-in commands
Documentation
1
2
3
4
5
6
7
use super::db_table::DbTable;

#[derive(Clone, PartialEq, Eq, Debug)]
pub struct DbSchema {
    pub name: String,
    pub tables: Vec<DbTable>,
}