mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-06 17:45:22 +00:00
8 lines
236 B
Plaintext
8 lines
236 B
Plaintext
table_name("user_groups")
|
|
description("Local system user group relationships.")
|
|
schema([
|
|
Column("uid", BIGINT, "User ID", index=True),
|
|
Column("gid", BIGINT, "Group ID", index=True)
|
|
])
|
|
implementation("user_groups@genUserGroups")
|