blob: 855bcaa83419c906d292d5aaaebc24b1da1fe2c7 [file] [log] [blame]
<?php
require_once "/home/data/httpd/eclipse-php-classes/system/dbconnection_dashboard_rw.class.php";
require_once $_SERVER['DOCUMENT_ROOT'] . "/projects/stats/hostname.php";
$db_connection = new DBConnectionDashboard();
$db_handle = $db_connection->connect();
//////////////////////////////////////////////
// //
// Create the table that will hold all logs //
// //
//////////////////////////////////////////////
$query = "CREATE TABLE ".log_table()." (project_id varchar(100), ";
$query .= "news_text mediumtext, mail_text mediumtext, bugs_text mediumtext, ";
$query .= "article_text mediumtext, PRIMARY KEY(project_id))";
echo $query."\n";
mysql_query($query,$db_handle) or die("Could not create table: ".mysql_error());
$db_handle = null;
$db_connection = null;
?>