From 0065f020ed20cccdc1b527b86c5cd7aca38efcc0 Mon Sep 17 00:00:00 2001 From: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com> Date: Fri, 2 Jun 2023 19:30:18 -0700 Subject: [PATCH] Removes line about adding a new index to the library_action table (#75808) ## About The Pull Request I ended up walking back the index since it ended up being useless in testing, just forgot to nuke the comment about it --- SQL/database_changelog.md | 1 - 1 file changed, 1 deletion(-) diff --git a/SQL/database_changelog.md b/SQL/database_changelog.md index 03f2363aae9..c990427876e 100644 --- a/SQL/database_changelog.md +++ b/SQL/database_changelog.md @@ -18,7 +18,6 @@ In any query remember to add a prefix to the table names if you use one. ----------------------------------------------------- Version 5.24, 17 May 2023, by LemonInTheDark Modified the library action table to fit ckeys properly, and to properly store ips. -Adds a new index to the library table to speed up admin searches ```sql ALTER TABLE `library_action` MODIFY COLUMN `ckey` varchar(32) NOT NULL; ALTER TABLE `library_action` MODIFY COLUMN `ip_addr` int(10) unsigned NOT NULL;