14 lines
178 B
MySQL
14 lines
178 B
MySQL
|
-- Verify camper:company_user_profile on pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
select user_id
|
||
|
, email
|
||
|
, name
|
||
|
, role
|
||
|
, lang_tag
|
||
|
from camper.company_user_profile
|
||
|
where false;
|
||
|
|
||
|
rollback;
|