Title: Fixed Database error
Last modified: August 21, 2016

---

# Fixed Database error

 *  Resolved [bigmek](https://wordpress.org/support/users/bigmek/)
 * (@bigmek)
 * [12 years ago](https://wordpress.org/support/topic/fixed-database-error/)
 * Version 3.4.4 has an error in the creation of the seo_title_tag_url database 
   in the seo-title-tag-3.4.php file.
 *  $sql = “CREATE TABLE $table_name (
    id bigint NOT NULL AUTO_INCREMENT PRIMARY
   KEY, url varchar(255) NOT NULL, title varchar(255) NOT NULL, description varchar(
   255) NOT NULL, UNIQUE KEY id (id), PRIMARY KEY (id) ) $charset_collate;”;
 * should be changed to:
 *  $sql = “CREATE TABLE $table_name (
    id bigint NOT NULL AUTO_INCREMENT, url varchar(
   255) NOT NULL, title varchar(255) NOT NULL, description varchar(255) NOT NULL,
   UNIQUE KEY id (id), PRIMARY KEY (id) ) $charset_collate;”;
 * [https://wordpress.org/plugins/seo-title-tag/](https://wordpress.org/plugins/seo-title-tag/)

The topic ‘Fixed Database error’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/seo-title-tag.svg)
 * [SEO Title Tag](https://wordpress.org/plugins/seo-title-tag/)
 * [Support Threads](https://wordpress.org/support/plugin/seo-title-tag/)
 * [Active Topics](https://wordpress.org/support/plugin/seo-title-tag/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/seo-title-tag/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/seo-title-tag/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [bigmek](https://wordpress.org/support/users/bigmek/)
 * Last activity: [12 years ago](https://wordpress.org/support/topic/fixed-database-error/)
 * Status: resolved