Column names in schema tables
schema_table_colnames.Rd
A string list names of columns in schema tables.
Format
A string list with 6 entries.
- table
The name of a string column that tells the database table name.
- colname
The name of a string column that identifies a column in
table
.- is_pk
The name of a boolean column that tells whether
column
is a primary key.- coldatatype
The name of a string column that tells the data type of
column
, such as "int", "text", "boolean", or "double precision".- fk_table
The name of a string column that identifies the table in which a foreign key can be found. "NA" is a valid value for
fk_table
, meaning thatcolname
does not have a foreign key.- fk_colname
The name of a string column that identifies the name of a column in
fk_table
that contains values for the foreign key. "NA" is a valid value forfk_colname
, meaning thatcolname
does not have a foreign key.