I know I can create a table from a qa_register_plugin_module using:
function init_queries($tableslc) {
return 'CREATE TABLE ^mytable (....
Now I have written a plugin that has only a qa_register_plugin_layer.
Do I need to register a plugin-module only for creating the database table or can I create the table from the layer as well? In other words, can I use init_queries for the layer? ... my feeling says no, I have to use a plugin-module, am I right?