5d55e78283
The same exact plugins are often included in many different files/mods. Grouping by hash in the sql query will show all files and mods a plugin appears in. Previously, the last file that was processed would overwrite the plugin file and only that single file/mod would appear in the file. Also adds an index on plugins.hash since I'm now querying directly on it.
2 lines
32 B
SQL
2 lines
32 B
SQL
CREATE INDEX ON plugins (hash);
|