This website requires JavaScript.
Explore
Help
Sign In
thallada
/
modmapper
Watch
1
Star
0
Fork
0
You've already forked modmapper
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
c7ead28cfa
modmapper
/
migrations
/
20220312173403_add_plugin_hash_index.sql
2 lines
32 B
MySQL
Raw
Normal View
History
Unescape
Escape
Dump plugins by hash instead of id 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.
2022-03-12 18:05:21 +00:00
CREATE
INDEX
ON
plugins
(
hash
)
;
Reference in New Issue
Copy Permalink