TEMPORARY

Constant TEMPORARY 

Source
pub const TEMPORARY: TableMarker;
Expand description

Creates a TEMPORARY table.

§Example


#[PostgresTable(TEMPORARY)]
struct TempData {
    id: i32,
    value: String,
}

Temporary tables exist only for the current session.

See: https://www.postgresql.org/docs/current/sql-createtable.html#SQL-CREATETABLE-TEMPORARY