Filter out vaikas dev hostnames
This commit is contained in:
parent
20452b128b
commit
077c8f36fc
|
@ -21,6 +21,7 @@ WHERE
|
|||
)
|
||||
AND hostnames NOT LIKE 'localhost.%'
|
||||
AND hostnames NOT LIKE '%.svc'
|
||||
AND hostnames NOT LIKE '%.%-%.%.dev'
|
||||
AND hostnames NOT LIKE '%.test'
|
||||
AND hostnames NOT LIKE '%.internal'
|
||||
AND hostnames NOT LIKE '%.local'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
SELECT
|
||||
description AS "desc",
|
||||
description AS 'desc',
|
||||
fragment_path AS path,
|
||||
hash.sha256,
|
||||
file.ctime,
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
SELECT
|
||||
name,
|
||||
profile,
|
||||
chrome_extensions.description AS "descr",
|
||||
chrome_extensions.description AS 'descr',
|
||||
persistent AS persists,
|
||||
author,
|
||||
chrome_extensions.path,
|
||||
|
@ -9,7 +9,7 @@ SELECT
|
|||
file.ctime,
|
||||
from_webstore AS in_store,
|
||||
CAST(permissions AS text) AS perms,
|
||||
state AS "enabled",
|
||||
state AS 'enabled',
|
||||
CONCAT (
|
||||
from_webstore,
|
||||
',',
|
||||
|
|
Loading…
Reference in New Issue