/** * Implements hook_schema(). */ function hello_schema() { $schema['hello_user_statistics'] = [ 'description' => 'Stores user connection statistics.', 'fields' => [ 'id' => [ 'type' => 'serial', 'description' => 'Primary Key: Unique history ID.', 'unsigned' => TRUE, 'not null' => TRUE, ], 'time' => [ 'type' => 'int', 'description' => 'Timestamp of user action.', 'unsigned' => TRUE, 'not null' => TRUE, ], 'uid' => [ 'type' => 'int', 'description' => 'Store user action.', 'unsigned' => TRUE, 'not null' => TRUE, ], 'action' => [ 'type' => 'int', 'size' => 'tiny', 'description' => 'Action.', 'not null' => TRUE, ], ], 'primary key' => ['id'], ]; return $schema; }