Skip to main content

ironflow_ops_postgres/schema/
mod.rs

1//! Schema introspection operations.
2//!
3//! Each sub-module covers one aspect of PostgreSQL schema inspection:
4//!
5//! | Module | Operations |
6//! |--------|-----------|
7//! | [`databases`] | [`ListDatabases`](databases::ListDatabases) |
8//! | [`schemas`] | [`ListSchemas`](schemas::ListSchemas) |
9//! | [`tables`] | [`ListTables`](tables::ListTables), [`TableExists`](tables::TableExists) |
10//! | [`columns`] | [`ListColumns`](columns::ListColumns) |
11//! | [`indexes`] | [`ListIndexes`](indexes::ListIndexes) |
12//! | [`constraints`] | [`ListConstraints`](constraints::ListConstraints) |
13
14pub mod columns;
15pub mod constraints;
16pub mod databases;
17pub mod indexes;
18pub mod schemas;
19pub mod tables;