diff options
Diffstat (limited to 'modules/statistics/statistics.schema')
-rw-r--r-- | modules/statistics/statistics.schema | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/modules/statistics/statistics.schema b/modules/statistics/statistics.schema deleted file mode 100644 index a866c0a5f..000000000 --- a/modules/statistics/statistics.schema +++ /dev/null @@ -1,23 +0,0 @@ -<?php -// $Id$ - -function statistics_schema() { - $schema['accesslog'] = array( - 'fields' => array( - 'aid' => array('type' => 'serial', 'not null' => TRUE), - 'sid' => array('type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => ''), - 'title' => array('type' => 'varchar', 'length' => 255, 'not null' => FALSE), - 'path' => array('type' => 'varchar', 'length' => 255, 'not null' => FALSE), - 'url' => array('type' => 'varchar', 'length' => 255, 'not null' => FALSE), - 'hostname' => array('type' => 'varchar', 'length' => 128, 'not null' => FALSE), - 'uid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => FALSE, 'default' => 0), - 'timer' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), - 'timestamp' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0) - ), - 'indexes' => array('accesslog_timestamp' => array('timestamp')), - 'primary key' => array('aid'), - ); - - return $schema; -} - |