Skip to content
This repository was archived by the owner on Jul 9, 2018. It is now read-only.

Commit f31f061

Browse files
author
Egil Moeller
committed
Added an sql script with a debug-info-view for plugins
1 parent 3cd0436 commit f31f061

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

contrib/scripts/plugin_info.sql

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
create view plugin_info as
2+
select
3+
p.name as plugin,
4+
h.name as hook,
5+
ph.original_name,
6+
ht.name as type
7+
from
8+
plugin as p
9+
join plugin_hook as ph on
10+
p.id = ph.plugin_id
11+
join hook as h on
12+
ph.hook_id = h.id
13+
join hook_type as ht on
14+
h.type_id = ht.id;

0 commit comments

Comments
 (0)