mirror of
https://github.com/CompassConnections/Compass.git
synced 2025-12-24 06:27:52 -05:00
13 lines
259 B
SQL
13 lines
259 B
SQL
create table if not exists
|
|
temp_users (
|
|
created_time timestamp with time zone,
|
|
id text,
|
|
name text,
|
|
private_user_data jsonb,
|
|
user_data jsonb,
|
|
username text
|
|
);
|
|
|
|
-- Row Level Security
|
|
alter table temp_users enable row level security;
|