pub const INHERITS: TableMarker;Expand description
Specifies inheritance from a parent table.
§Example
ⓘ
#[PostgresTable(INHERITS = "base_table")]
struct ChildTable {
extra_field: String,
}See: https://www.postgresql.org/docs/current/ddl-inherit.html