Skip to content
This repository has been archived by the owner on Dec 22, 2020. It is now read-only.

Commit

Permalink
Default install now creates the records table supporting UNIPEN forma…
Browse files Browse the repository at this point in the history
…t. Remember to run admin/sys/upgrade.php if using an old installation of smt2.
  • Loading branch information
luis.leiva.torres committed Mar 26, 2012
1 parent 2e8297b commit fd5c509
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions admin/sys/install-ready.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ function try_sql_query($sql)
$sql .= '`fps` TINYINT unsigned NOT NULL, '; // registration accuracy
$sql .= '`coords_x` MEDIUMTEXT NOT NULL, '; // mouse coordinates (max 16777215 chars in one mouse trail)
$sql .= '`coords_y` MEDIUMTEXT NOT NULL, ';
$sql .= '`clicks_x` MEDIUMTEXT NOT NULL, '; // mouse clicks
$sql .= '`clicks_y` MEDIUMTEXT NOT NULL, ';
$sql .= '`clicks` MEDIUMTEXT NOT NULL, '; // mouse clicks
$sql .= '`hovered` LONGTEXT NOT NULL, '; // most hovered widgets (max 4294967298 chars)
$sql .= '`clicked` LONGTEXT NOT NULL, '; // ...and clicked
$sql .= 'PRIMARY KEY (`id`) ) DEFAULT CHARSET utf8';
Expand Down

0 comments on commit fd5c509

Please sign in to comment.