R/sb_db_schema.R
sb_db_schema.Rd
Get table schema
sb_db_schema(table = NULL, schema = get_schema())
The table name
The schema name
A data frame with column_name and data_type
if (FALSE) { # \dontrun{ # Get column info for a table sb_db_schema("users") # Returns: column_name, data_type, is_nullable } # }