table dosen't exist

Status
Not open for further replies.

anthonyy

Member
Dec 23, 2014
127
10
Table 'hotel.profile_comments' doesn't exist where to find the table please?
 

Attachments

  • Screenshot_8.png
    Screenshot_8.png
    16.6 KB · Views: 10

Xuxu

Member
Nov 21, 2016
295
59
-- ----------------------------
-- Table structure for profile_comments
-- ----------------------------
DROP TABLE IF EXISTS `profile_comments`;
CREATE TABLE `profile_comments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`profile_id` int(11) NOT NULL,
`sender` int(11) NOT NULL,
`comment` varchar(500) NOT NULL,
`posted_on` varchar(150) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=106 DEFAULT CHARSET=latin1;
 

anthonyy

Member
Dec 23, 2014
127
10
-- ----------------------------
-- Table structure for profile_comments
-- ----------------------------
DROP TABLE IF EXISTS `profile_comments`;
CREATE TABLE `profile_comments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`profile_id` int(11) NOT NULL,
`sender` int(11) NOT NULL,
`comment` varchar(500) NOT NULL,
`posted_on` varchar(150) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=106 DEFAULT CHARSET=latin1;
thanks man :D
 
Status
Not open for further replies.

Users who are viewing this thread

Top