use crate::;
/// User can have previlege to tables, to columns
/// The table models can be filtered depending on how much
/// and which columns it has privilege
///
/// CREATE TABLE user_privilege(
/// user_id int,
/// schema text,
/// table_name text,
/// columns text[], -- if no column mentioned, then the user has priviledge to all of the table columns
/// privilege text[],
/// )
/// User privileges for each tables