22 lines
420 B
PL/PgSQL
22 lines
420 B
PL/PgSQL
begin;
|
|
|
|
grant insert (
|
|
reported_birth_time,
|
|
birth_time_source,
|
|
birth_time_period,
|
|
birth_time_clue,
|
|
uncertainty_before_minutes,
|
|
uncertainty_after_minutes
|
|
) on table public.profiles to service_role;
|
|
|
|
grant select (
|
|
reported_birth_time,
|
|
birth_time_source,
|
|
birth_time_period,
|
|
birth_time_clue,
|
|
uncertainty_before_minutes,
|
|
uncertainty_after_minutes
|
|
) on table public.profiles to service_role;
|
|
|
|
commit;
|