HEX
Server: LiteSpeed
System: Linux server44.twelveinks.com 5.14.0-570.12.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 13 06:11:55 EDT 2025 x86_64
User: moda (1338)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /python/moda/public_html/tech/old/resources/sql/upgrade870beta2.sql
-- Modify hours columns to DECIMAL(5,2)
alter table `tblbillableitems` modify `hours` decimal(5,2) not null;

-- Add new index for relid column in tblcustomfieldsvalues
set @query = if ((SELECT count(INDEX_NAME) FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = database() AND TABLE_NAME = 'tblcustomfieldsvalues' AND INDEX_NAME = 'relid') = 0, 'CREATE INDEX `relid` ON `tblcustomfieldsvalues` (`relid`)', 'DO 0');
prepare statement from @query;
execute statement;
deallocate prepare statement;