Server IP : 213.176.29.180 / Your IP : 3.14.131.240 Web Server : Apache System : Linux 213.176.29.180.hostiran.name 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64 User : webtaragh ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/webtaragh/public_html/whmcs/resources/sql/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
-- Add new index (date) for date column in tblinvoices set @query = if ((SELECT count(INDEX_NAME) FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = database() AND TABLE_NAME = 'tblinvoices' AND INDEX_NAME = 'duedate') = 0, 'CREATE INDEX `duedate` ON `tblinvoices` (`duedate`)', 'DO 0'); prepare statement from @query; execute statement; deallocate prepare statement; -- Add composite index for client id and client status in tblclients; set @query = if ((SELECT count(INDEX_NAME) FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = database() AND TABLE_NAME = 'tblclients' AND INDEX_NAME = 'client_status_id') = 0, 'CREATE INDEX `client_status_id` ON `tblclients` (`status`, `id`)', 'DO 0'); prepare statement from @query; execute statement; deallocate prepare statement; -- Add index for product type in tblproducts; set @query = if ((SELECT count(INDEX_NAME) FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = database() AND TABLE_NAME = 'tblproducts' AND INDEX_NAME = 'type') = 0, 'CREATE INDEX `type` ON `tblproducts` (`type`(4))', 'DO 0'); prepare statement from @query; execute statement; deallocate prepare statement;