PHP Classes

File: create_report_logs_table.sql

Recommend this page to a friend!
  Classes of Jesus Matiz   PHP Log Report   create_report_logs_table.sql   Download  
File: create_report_logs_table.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Log Report
Log application activities to files or a database
Author: By
Last change:
Date: 5 years ago
Size: 436 bytes
 

Contents

Class file image Download
CREATE TABLE `report_logs` ( `id` BIGINT(20) NOT NULL AUTO_INCREMENT, `type_error` VARCHAR(70) NULL DEFAULT NULL COLLATE 'utf8_unicode_ci', `message` TEXT NULL COLLATE 'utf8_unicode_ci', `trace` TEXT NULL COLLATE 'utf8_unicode_ci', `file` TEXT NULL COLLATE 'utf8_unicode_ci', `line` INT(11) NULL DEFAULT NULL, `created_at` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) COLLATE='utf8_unicode_ci' ENGINE=InnoDB ;