15 lines
146 B
MySQL
15 lines
146 B
MySQL
|
-- Verify numerus:user_profile on pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
select
|
||
|
user_id
|
||
|
, email
|
||
|
, name
|
||
|
, role
|
||
|
, lang_tag
|
||
|
from numerus.user_profile
|
||
|
where false;
|
||
|
|
||
|
rollback;
|