-- phpMyAdmin SQL Dump
-- version 3.2.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 20, 2010 at 02:43 PM
-- Server version: 5.1.40
-- PHP Version: 5.2.6

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Database: `bmcforu_transfer`
--

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

--
-- Table structure for table `socialgroupcategory`
--

CREATE TABLE IF NOT EXISTS `socialgroupcategory` (
  `socialgroupcategoryid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `creatoruserid` int(10) unsigned NOT NULL DEFAULT '0',
  `title` varchar(250) NOT NULL DEFAULT '',
  `description` text NOT NULL,
  `displayorder` int(10) unsigned NOT NULL DEFAULT '0',
  `lastupdate` int(10) unsigned NOT NULL DEFAULT '0',
  `groups` int(10) unsigned DEFAULT '0',
  PRIMARY KEY (`socialgroupcategoryid`),
  KEY `displayorder` (`displayorder`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `socialgroupcategory`
--

INSERT INTO `socialgroupcategory` (`socialgroupcategoryid`, `creatoruserid`, `title`, `description`, `displayorder`, `lastupdate`, `groups`) VALUES
(1, 1, 'Uncategorized', '', 1, 1240264070, 0);

