Originally posted by something else
View Post

with the chapel sql tables i use:
--
-- Table structure for table `couple`
--
CREATE TABLE IF NOT EXISTS `couple` (
`id` int(100) NOT NULL auto_increment,
`who` int(100) NOT NULL default '0',
`partner` int(100) NOT NULL default '0',
`req` int(100) NOT NULL default '0',
`accept` int(100) NOT NULL default '0',
`joined` int(100) NOT NULL default '0',
`time` int(100) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=64 ;
--
-- Dumping data for table `couple`
--
------------------------------------------------------------
Leave a comment: