Minor - Add comment about autoincrement in SQLite

1.10.x
Yannick Warnier 11 years ago
parent 989654d2ee
commit 20d5be8afe
  1. 2
      main/cron/lang/langstats.class.php

@ -44,7 +44,7 @@ class langstats
} }
$err = $this->db->exec( $err = $this->db->exec(
'CREATE TABLE lang_freq (' 'CREATE TABLE lang_freq ('
. ' id integer PRIMARY KEY AUTOINCREMENT, ' . ' id integer PRIMARY KEY AUTOINCREMENT, ' //autoincrement in SQLITE
. ' term_name text, term_file text, term_count integer default 0)' . ' term_name text, term_file text, term_count integer default 0)'
); );
if ($err === false) { if ($err === false) {

Loading…
Cancel
Save