2015-03-24 05:34:22 +00:00
|
|
|
table_name("package_bom")
|
|
|
|
description("OS X package bill of materials (BOM) file list.")
|
|
|
|
schema([
|
|
|
|
Column("filepath", TEXT, "Package file or directory"),
|
|
|
|
Column("uid", INTEGER, "Expected user of file or directory"),
|
|
|
|
Column("gid", INTEGER, "Expected group of file or directory"),
|
|
|
|
Column("mode", INTEGER, "Expected permissions"),
|
|
|
|
Column("size", INTEGER, "Expected file size"),
|
|
|
|
Column("modified_time", INTEGER, "Timestamp the file was installed"),
|
|
|
|
Column("path", TEXT, "Path of package bom", required=True),
|
|
|
|
])
|
|
|
|
implementation("packages@genPackageBOM")
|
2015-06-01 22:53:52 +00:00
|
|
|
examples([
|
|
|
|
"select * from package_bom where path = '/var/db/receipts/com.apple.pkg.MobileDevice.bom'"
|
|
|
|
])
|