-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.sql
More file actions
42 lines (36 loc) · 1.82 KB
/
contacts.sql
File metadata and controls
42 lines (36 loc) · 1.82 KB
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
39
40
41
42
/*
Navicat MySQL Data Transfer
Source Database : addressbook
Target Server Type : MYSQL
Target Server Version : 50718
File Encoding : 65001
Date: 2018-07-20 11:42:47
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for contacts
-- ----------------------------
DROP TABLE IF EXISTS `contacts`;
CREATE TABLE `contacts` (
`uid` int(11) NOT NULL AUTO_INCREMENT,
`first_name` varchar(255) DEFAULT NULL,
`second_name` varchar(255) DEFAULT NULL,
`address` varchar(255) DEFAULT NULL,
`postcode` varchar(255) DEFAULT NULL,
`phone_home` varchar(55) DEFAULT NULL,
`phone_work` varchar(55) DEFAULT NULL,
`phone_mobile` varchar(55) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
`birthday` varchar(55) DEFAULT NULL,
PRIMARY KEY (`uid`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of contacts
-- ----------------------------
INSERT INTO `contacts` VALUES ('1', 'Aaron', 'Marshall', '100 Potato Avenue', 'LS29 0PD', '01387 542542', '0800 118118', '07590548669', 'aaron.otaku@gmail.com', '13/06/1988');
INSERT INTO `contacts` VALUES ('4', 'Kelly', null, '12 Lorem Ipsum', 'LR5 9XT', null, null, null, 'brandyzomb@gmail.com', null);
INSERT INTO `contacts` VALUES ('5', 'Kevin', null, null, null, null, null, null, 'ipodude500@gmail.com', null);
INSERT INTO `contacts` VALUES ('6', 'Joe', 'Matthews', null, null, null, null, null, 'joewalton001@gmail.com', null);
INSERT INTO `contacts` VALUES ('9', 'Ben', 'Roper', '64 Glasgow Road', 'DG1 1GH', null, null, null, 'northernshadow@hotmail.com', null);
INSERT INTO `contacts` VALUES ('14', 'Johan', null, null, null, null, null, null, 'johan.sjuol@gmail.com', null);
INSERT INTO `contacts` VALUES ('16', 'Test', 'McTestington', null, null, null, null, null, 'Gaming5764@gmail.com', '2018-09-07');