14 lines
183 B
MySQL
14 lines
183 B
MySQL
|
-- Verify numerus:login_attempt on pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
select attempt_id
|
||
|
, user_name
|
||
|
, ip_address
|
||
|
, success
|
||
|
, attempted_at
|
||
|
from auth.login_attempt
|
||
|
where false;
|
||
|
|
||
|
rollback;
|