blob: 1a15f09916d395e386be905bd3dfbb2e9701eee8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
class TestConfig
{
const DBSM = "mysql";
const HOST = "localhost";
const USER = "root";
const PASSWORD = "root";
const DB_NAME = "scheduler";
const TEMP_TABLE_NAME = "temp_table_20160315";
public static $fields = array(
"id" => "INT(11) DEFAULT NULL",
"start_date" => "DATETIME NOT NULL",
"end_date" => "DATETIME NOT NULL",
"text" => "VARCHAR(255) NOT NULL",
"rec_type" => "VARCHAR(50) DEFAULT NULL",
"event_length" => " BIGINT(20) DEFAULT NULL",
"event_pid" => "INT(11) DEFAULT NULL"
);
}
|