CREATE TABLE IF NOT EXISTS `#__djcf_profiles_msg` ( `id` int(11) NOT NULL auto_increment, `user_to` int(11) NOT NULL, `user_from` int(11) NOT NULL, `ip_address` varchar(50) NOT NULL, `message` text NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `custom_fields` text NOT NULL, PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8;