-- -- Table structure for table `chat_users` -- CREATE TABLE `chat_users` ( `userid` int(11) NOT NULL, `username` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `avatar` varchar(255) NOT NULL, `current_session` int(11) NOT NULL, `online` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; -- -- Dumping data for table `chat_users` -- INSERT INTO `chat_users` (`userid`, `username`, `password`, `avatar`, `current_session`, `online`) VALUES (1, '이성노', '761127', 'user1.jpg', 3, 1), (2, '이윤영', '820316', 'user2.jpg', 1, 0), (3, '이윤서', '081111', 'user3.jpg', 1, 1), (4, '이은지', '010127', 'user4.jpg', 0, 0), (5, 'katrina', '123', 'user5.jpg', 0, 0), (6, 'Rhodes', '123', 'user6.jpg', 0, 0); -- -- Indexes for table `chat_users` -- ALTER TABLE `chat_users` ADD PRIMARY KEY (`userid`); -- -- Table structure for table `chat` -- CREATE TABLE `chat` ( `chatid` int(11) NOT NULL, `sender_userid` int(11) NOT NULL, `reciever_userid` int(11) NOT NULL, `message` text NOT NULL, `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `status` int(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; -- -- Indexes for table `chat` -- ALTER TABLE `chat` ADD PRIMARY KEY (`chatid`); -- -- Table structure for table `chat_login_details` -- CREATE TABLE `chat_login_details` ( `id` int(11) NOT NULL, `userid` int(11) NOT NULL, `last_activity` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `is_typing` enum('no','yes') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; -- -- Indexes for table `chat_login_details` -- ALTER TABLE `chat_login_details` ADD PRIMARY KEY (`id`);