Skip to content

Commit

Permalink
Missing queries affecting a fresn install, closes #1347 and #1346
Browse files Browse the repository at this point in the history
  • Loading branch information
kamaulynder committed Apr 22, 2014
1 parent 7129097 commit 16ac036
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions sql/ushahidi.sql
Original file line number Diff line number Diff line change
Expand Up @@ -624,6 +624,23 @@ CREATE TABLE IF NOT EXISTS `feed_item` (

-- --------------------------------------------------------

/**
* Table structure for table `feed_item_category`
*
*/

CREATE TABLE IF NOT EXISTS `feed_item_category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`feed_item_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`category_id` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `feed_item_category_ids` (`feed_item_id`,`category_id`),
KEY `feed_item_id` (`feed_item_id`),
KEY `category_id` (`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stores fetched feed items categories' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

/**
* Table structure for table `form`
*
Expand Down Expand Up @@ -1384,6 +1401,7 @@ VALUES
(63,'manually_approve_users','0'),
(64,'enable_timeline','0'),
(65,'feed_geolocation_user', '');
(65,'allow_feed_category', '0');
-- --------------------------------------------------------

/**
Expand Down

0 comments on commit 16ac036

Please sign in to comment.