Skip to content

Commit

Permalink
#3262 - Make sure that primary index is in every table - fix
Browse files Browse the repository at this point in the history
  • Loading branch information
romanlesnikov committed Apr 1, 2022
1 parent 1a1d3cd commit b08862d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/boonex/posts/install/sql/install.sql
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,10 @@ CREATE TABLE `bx_posts_views_track` (

-- TABLE: metas
CREATE TABLE `bx_posts_meta_keywords` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`object_id` int(10) unsigned NOT NULL,
`keyword` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
KEY `object_id` (`object_id`),
KEY `keyword` (`keyword`)
);
Expand Down

0 comments on commit b08862d

Please sign in to comment.