SET FOREIGN_KEY_CHECKS=0;
#----------------------------
Table structure for uassociations
#----------------------------
CREATE TABLE uassociations (
uassociation_id int(5) NOT NULL auto_increment,
user_id int(8) NOT NULL default '0',
association varchar(255) NOT NULL default '',
association_date date NOT NULL default '0000-00-00',
PRIMARY KEY (uassociation_id)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
#----------------------------
Records for table uassociations
#----------------------------
insert into uassociations values
(7, 26, 'BNI', '2007-04-19'),
(8, 34, 'BNI', '2007-04-19'),
(9, 34, 'Crazy People', '2007-04-19'),
(10, 34, 'Networker Inc.', '2007-04-19'),
(11, 34, 'Womens Group', '2007-04-19'),
(12, 26, 'Networker Inc.', '2007-04-20');