SELECT CONSTRAINT_NAME as name, CONSTRAINT_TYPE as type FROM information_schema.table_constraints WHERE table_schema = schema() AND table_name = 'settings';
↑+1ms
#3
debug
SELECT * FROM settings LIMIT 50 OFFSET 0;
↑+3ms
#4
debug
SHOW COLUMNS FROM `users`;
↑+25ms
#5
debug
SELECT CONSTRAINT_NAME as name, CONSTRAINT_TYPE as type FROM information_schema.table_constraints WHERE table_schema = schema() AND table_name = 'users';
↑+1ms
#6
debug
SHOW COLUMNS FROM `pages`;
↑+1ms
#7
debug
SELECT CONSTRAINT_NAME as name, CONSTRAINT_TYPE as type FROM information_schema.table_constraints WHERE table_schema = schema() AND table_name = 'pages';
↑+1ms
#8
debug
SHOW COLUMNS FROM `empresas`;
↑+4ms
#9
debug
SELECT CONSTRAINT_NAME as name, CONSTRAINT_TYPE as type FROM information_schema.table_constraints WHERE table_schema = schema() AND table_name = 'empresas';
↑+1ms
#10
debug
SELECT * FROM empresas
↑+5ms
#11
debug
SHOW COLUMNS FROM `attached_files`;
↑+41ms
#12
debug
SELECT CONSTRAINT_NAME as name, CONSTRAINT_TYPE as type FROM information_schema.table_constraints WHERE table_schema = schema() AND table_name = 'attached_files';
↑+1ms
#13
debug
SELECT * FROM attached_files WHERE idfile = '1' LIMIT 1 OFFSET 0;