9 lines
117 B
MySQL
9 lines
117 B
MySQL
|
-- Retrieves the ssh configs per user
|
||
|
--
|
||
|
-- tags: postmortem
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
users
|
||
|
JOIN ssh_configs USING (uid);
|