-
Notifications
You must be signed in to change notification settings - Fork 0
student-mohitkumar/Socialsite
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
-- phpMyAdmin SQL Dump -- version 4.2.11 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Mar 16, 2019 at 05:49 PM -- Server version: 5.6.21 -- PHP Version: 5.6.3 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `socialdb` -- -- -------------------------------------------------------- -- -- Table structure for table `friends` -- CREATE TABLE IF NOT EXISTS `friends` ( `my_friend_id` int(11) NOT NULL, `my_id` int(11) NOT NULL, `friends_id` int(11) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `friends` -- INSERT INTO `friends` (`my_friend_id`, `my_id`, `friends_id`) VALUES (1, 10, 0); -- -------------------------------------------------------- -- -- Table structure for table `members` -- CREATE TABLE IF NOT EXISTS `members` ( `member_id` int(11) NOT NULL, `firstname` varchar(100) NOT NULL, `lastname` varchar(100) NOT NULL, `middlename` varchar(100) NOT NULL, `address` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `contact_no` varchar(100) NOT NULL, `age` int(11) NOT NULL, `gender` varchar(100) NOT NULL, `username` varchar(100) NOT NULL, `password` varchar(100) NOT NULL, `image` varchar(100) NOT NULL, `birthdate` varchar(100) NOT NULL, `mobile` varchar(100) NOT NULL, `status` varchar(100) NOT NULL, `work` varchar(100) NOT NULL, `religion` varchar(100) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; -- -- Dumping data for table `members` -- INSERT INTO `members` (`member_id`, `firstname`, `lastname`, `middlename`, `address`, `email`, `contact_no`, `age`, `gender`, `username`, `password`, `image`, `birthdate`, `mobile`, `status`, `work`, `religion`) VALUES (1, 'stephanie', 'villanueva', 'batoonq', 'Saraviaq', '[email protected]', '0946651154', 18, 'Male', 'teph', 'teph', 'images/male5.jpg', 'q', 'q', 'q', 'q', 'q'), (7, 'john kevin', 'lorayna', '', 'bago city', '[email protected]', '09466651154', 19, 'Male', 'q', 'q', '', '', '', '', '', ''), (8, 'testg', 'fasfsg', '', 'bagdahsd', '[email protected]', '31289417', 12, 'Female', 'test', 'qwerty', '', '', '', '', '', ''), (9, 'jessica', 'bela-ong', '', 'bbasf', '[email protected]', '311fasf', 19, 'Female', 'jessica', '12345', '', '', '', '', '', ''), (10, 'Harry', 'Den', '', 'espn', '', '', 0, 'Male', 'harry', 'pass', 'images/male6.jpg', '12 Jan-1995', '7542220011', 'Single', 'developer', 'Buddhist'); -- -------------------------------------------------------- -- -- Table structure for table `message` -- CREATE TABLE IF NOT EXISTS `message` ( `message_id` int(11) NOT NULL, `sender_id` int(11) NOT NULL, `reciever_id` int(11) NOT NULL, `content` varchar(100) NOT NULL, `date_sended` varchar(100) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `message` -- INSERT INTO `message` (`message_id`, `sender_id`, `reciever_id`, `content`, `date_sended`) VALUES (1, 10, 1, 'hello', '2019-02-27 18:12:48'); -- -------------------------------------------------------- -- -- Table structure for table `note` -- CREATE TABLE IF NOT EXISTS `note` ( `note_id` int(11) NOT NULL, `date` varchar(100) NOT NULL, `message` varchar(200) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; -- -- Dumping data for table `note` -- INSERT INTO `note` (`note_id`, `date`, `message`) VALUES (6, '', 'Doc terry will be out on august 3 2013'); -- -------------------------------------------------------- -- -- Table structure for table `photos` -- CREATE TABLE IF NOT EXISTS `photos` ( `photos_id` int(11) NOT NULL, `location` varchar(100) NOT NULL, `member_id` int(11) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `photos` -- INSERT INTO `photos` (`photos_id`, `location`, `member_id`) VALUES (1, 'upload/7918240442_4471d5b11e_b.jpg', 1); -- -------------------------------------------------------- -- -- Table structure for table `post` -- CREATE TABLE IF NOT EXISTS `post` ( `post_id` int(11) NOT NULL, `member_id` int(11) NOT NULL, `content` varchar(1000) NOT NULL, `date_posted` varchar(100) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; -- -- Dumping data for table `post` -- INSERT INTO `post` (`post_id`, `member_id`, `content`, `date_posted`) VALUES (2, 1, 'test', '2014-06-20 21:55:52'), (3, 1, 'demo', '2019-02-27 18:07:13'), (4, 10, 'hello world', '2019-03-16 22:26:11'); -- -------------------------------------------------------- -- -- Table structure for table `schedule` -- CREATE TABLE IF NOT EXISTS `schedule` ( `id` int(11) NOT NULL, `member_id` int(11) NOT NULL, `date` varchar(100) NOT NULL, `service_id` int(11) NOT NULL, `Number` int(11) NOT NULL, `status` varchar(100) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=79 DEFAULT CHARSET=latin1; -- -- Dumping data for table `schedule` -- INSERT INTO `schedule` (`id`, `member_id`, `date`, `service_id`, `Number`, `status`) VALUES (76, 1, '11/09/2013', 1, 1, 'Done'), (77, 1, '11/09/2013', 1, 1, 'Pending'), (78, 1, '10/09/2013', 1, 1, 'Done'); -- -------------------------------------------------------- -- -- Table structure for table `service` -- CREATE TABLE IF NOT EXISTS `service` ( `service_id` int(11) NOT NULL, `service_offer` varchar(100) NOT NULL, `price` decimal(11,2) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; -- -- Dumping data for table `service` -- INSERT INTO `service` (`service_id`, `service_offer`, `price`) VALUES (1, 'Cleaning', '700.00'), (2, 'q', '100.00'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE IF NOT EXISTS `users` ( `user_id` int(11) NOT NULL, `username` varchar(100) NOT NULL, `password` varchar(100) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; -- -- Dumping data for table `users` -- INSERT INTO `users` (`user_id`, `username`, `password`) VALUES (5, 'admin', 'admin'), (9, 'teph', 'teph'), (10, 'teph', 'teph'); -- -- Indexes for dumped tables -- -- -- Indexes for table `friends` -- ALTER TABLE `friends` ADD PRIMARY KEY (`my_friend_id`); -- -- Indexes for table `members` -- ALTER TABLE `members` ADD PRIMARY KEY (`member_id`); -- -- Indexes for table `message` -- ALTER TABLE `message` ADD PRIMARY KEY (`message_id`); -- -- Indexes for table `note` -- ALTER TABLE `note` ADD PRIMARY KEY (`note_id`); -- -- Indexes for table `photos` -- ALTER TABLE `photos` ADD PRIMARY KEY (`photos_id`); -- -- Indexes for table `post` -- ALTER TABLE `post` ADD PRIMARY KEY (`post_id`); -- -- Indexes for table `schedule` -- ALTER TABLE `schedule` ADD PRIMARY KEY (`id`); -- -- Indexes for table `service` -- ALTER TABLE `service` ADD PRIMARY KEY (`service_id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`user_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `friends` -- ALTER TABLE `friends` MODIFY `my_friend_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `members` -- ALTER TABLE `members` MODIFY `member_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `message` -- ALTER TABLE `message` MODIFY `message_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `note` -- ALTER TABLE `note` MODIFY `note_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `photos` -- ALTER TABLE `photos` MODIFY `photos_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `post` -- ALTER TABLE `post` MODIFY `post_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `schedule` -- ALTER TABLE `schedule` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=79; -- -- AUTO_INCREMENT for table `service` -- ALTER TABLE `service` MODIFY `service_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=11; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published