camper/verify/user.sql

17 lines
207 B
MySQL
Raw Permalink Normal View History

-- Verify camper:user on pg
begin;
select user_id
, email
, name
, password
, lang_tag
, cookie
, cookie_expires_at
, created_at
from auth."user"
where false;
rollback;