-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcreate_database.sql
38 lines (33 loc) · 1.91 KB
/
create_database.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
--
-- Database: `thefacebook`
--
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE IF NOT EXISTS `users` (
`id` int(3) NOT NULL auto_increment,
`email` varchar(255) default NULL,
`name` varchar(255) default NULL,
`status` varchar(255) default NULL,
`password` varchar(255) default NULL,
`member_since` varchar(255) default NULL,
`sex` varchar(255) default NULL,
`year` varchar(255) default NULL,
`concentration` varchar(255) default NULL,
`screenname` varchar(255) default NULL,
`looking_for` varchar(255) default NULL,
`interested_in` varchar(255) default NULL,
`relationship` varchar(255) default NULL,
`political_view` varchar(255) default NULL,
`interests` varchar(255) default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `email`, `name`, `status`, `password`, `member_since`, `sex`, `year`, `concentration`, `screenname`, `looking_for`, `interested_in`, `relationship`, `political_view`, `interests`) VALUES
(1, '[email protected]', 'Prof. H', 'Faculty', 'secret', '2011-10-05', 'Enjoyable', 'A long time ago', 'Information Systems', 'profh', 'a SB victory for New England', 'Women', 'Married', 'Libertarian', 'Chess'),
(2, '[email protected]', 'Seth Vargo', 'Student', 'secret', '2011-10-05', 'Male', '2013', 'Information Systems', 'svargo', 'the name of a good Chinese carry-out place', 'Women', 'Single', 'Libertarian', 'Angry Birds'),
(3, '[email protected]', 'Stafford Brunk', 'Student', 'secret', '2011-10-05', 'Male', '2011', 'Information Systems', 'sbrunk', 'Love in all the right places', 'Women', 'Engaged', 'Libertarian', 'Running'),
(4, '[email protected]', 'Adam Weis', 'Student', 'secret', '2011-10-05', 'Male', '2013', 'Information Systems', 'aweis', 'Love in all the wrong places', 'Women', 'Single', NULL, 'Security');