· 8 years ago · May 19, 2018, 05:02 AM
1-- MySQL dump 10.11
2--
3-- Host: localhost Database: nursery
4-- ------------------------------------------------------
5-- Server version 5.0.45-community-nt
6
7
8/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
9/*!40101 SET NAMES utf8 */;
10/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
11/*!40103 SET TIME_ZONE='+00:00' */;
12/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
13/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
14/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
15/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
16
17--
18-- Table structure for table `area`
19--
20
21DROP TABLE IF EXISTS `area`;
22CREATE TABLE `area` (
23 `id` int(50) NOT NULL auto_increment,
24 `name` varchar(150) default NULL,
25 PRIMARY KEY (`id`)
26) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
27
28--
29-- Dumping data for table `area`
30--
31
32LOCK TABLES `area` WRITE;
33/*!40000 ALTER TABLE `area` DISABLE KEYS */;
34INSERT INTO `area` VALUES (1,'Skive'),(2,'Thisted');
35/*!40000 ALTER TABLE `area` ENABLE KEYS */;
36UNLOCK TABLES;
37
38--
39-- Table structure for table `child`
40--
41
42DROP TABLE IF EXISTS `child`;
43CREATE TABLE `child` (
44 `id` int(50) NOT NULL auto_increment,
45 `firstname` varchar(150) default NULL,
46 `adress` varchar(150) default NULL,
47 `town` varchar(150) default NULL,
48 `zipcode` varchar(150) default NULL,
49 `area_id` int(50) default NULL,
50 `childminder_id` int(50) default NULL,
51 `lastname` varchar(150) default NULL,
52 `birth` int(10) default NULL,
53 `comment` varchar(400) default NULL,
54 `created` datetime default '0000-00-00 00:00:00',
55 `deleted` datetime default '0000-00-00 00:00:00',
56 `creator_id` int(50) default '0',
57 `deleter_id` int(50) default NULL,
58 `homephone` varchar(50) default NULL,
59 `cellphone` varchar(50) default NULL,
60 `email` varchar(100) default NULL,
61 `section_id` int(50) default NULL,
62 `primary_cm_id` int(50) default NULL,
63 `actual_cm_id` int(50) default NULL,
64 `arrival` time default NULL,
65 `fetching` time default NULL,
66 PRIMARY KEY (`id`)
67) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=latin1;
68
69--
70-- Dumping data for table `child`
71--
72
73LOCK TABLES `child` WRITE;
74/*!40000 ALTER TABLE `child` DISABLE KEYS */;
75INSERT INTO `child` VALUES (35,'Jonathan','Ahornvej 27','Thisted','7700',2,NULL,'Langballe Cohen',10107,'Det er en test','2008-05-11 14:31:11','0000-00-00 00:00:00',12,NULL,'97910782','61710782','jaduer@hotmail.com',3,37,37,NULL,NULL),(36,'testbarn','','','',2,NULL,'efternavnet',280107,'','2008-05-14 21:53:15','0000-00-00 00:00:00',12,NULL,'12345678','','',2,35,35,'12:47:00','16:37:00'),(37,'adami','','','',2,NULL,'Cash',123456,'','2008-05-14 22:50:33','0000-00-00 00:00:00',12,NULL,'12345667','','',2,38,38,'12:12:00','12:12:00'),(38,'Allan','Jonsensallé 25','Thisted','7700',2,NULL,'Johnson',280606,'','2008-05-15 16:10:13','0000-00-00 00:00:00',12,NULL,'51453267','23425908','allan@johnson.com',2,38,38,'12:45:00','00:00:00');
76/*!40000 ALTER TABLE `child` ENABLE KEYS */;
77UNLOCK TABLES;
78
79--
80-- Table structure for table `childminder`
81--
82
83DROP TABLE IF EXISTS `childminder`;
84CREATE TABLE `childminder` (
85 `id` int(50) NOT NULL auto_increment,
86 `firstname` varchar(150) default NULL,
87 `homephone` varchar(50) default NULL,
88 `cellphone` varchar(50) default NULL,
89 `adress` varchar(150) default NULL,
90 `town` varchar(150) default NULL,
91 `zipcode` varchar(150) default NULL,
92 `area_id` int(50) default NULL,
93 `lastname` varchar(150) default NULL,
94 `comment` varchar(400) default NULL,
95 `created` datetime default '0000-00-00 00:00:00',
96 `deleted` datetime default '0000-00-00 00:00:00',
97 `deleter_id` int(50) default NULL,
98 `creator_id` int(50) default NULL,
99 `email` varchar(100) default NULL,
100 `section_id` int(50) default NULL,
101 PRIMARY KEY (`id`)
102) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=latin1;
103
104--
105-- Dumping data for table `childminder`
106--
107
108LOCK TABLES `childminder` WRITE;
109/*!40000 ALTER TABLE `childminder` DISABLE KEYS */;
110INSERT INTO `childminder` VALUES (35,'Adam','979107822','61704567','ahornvej 27','Thisted','7700',2,'Cohen','Det er en teeest','2008-05-14 15:03:40','2008-05-11 23:38:40',NULL,12,'cohenadam@gmail.com',3),(36,'Hansi','97910782','61704567','ahornvej 27','Thisted','7700',2,'Cohen','Det er en test','2008-05-14 22:35:38','2008-05-11 23:39:07',NULL,12,'',3),(37,'Nissim','12344234','52353241','Skivevej 23','Skive','6300',2,'Koren','Det er en test','2008-05-11 23:49:06','0000-00-00 00:00:00',NULL,12,NULL,2),(38,'Ali','97910782','61704567','ahornvej 27','Thisted','7700',2,'Cohen','Det er en test','2008-05-14 22:36:08','2008-05-13 19:58:13',NULL,12,'',3),(39,'Mette','97910782','61704567','ahornvej 27','Thisted','7700',2,'Cohen','Det er en test','2008-05-11 23:43:40','0000-00-00 00:00:00',NULL,12,NULL,3),(40,'Itamar','97910782','61704567','ahornvej 27','Thisted','7700',2,'Cohen','Det er en test','2008-05-11 23:43:52','0000-00-00 00:00:00',NULL,12,NULL,3);
111/*!40000 ALTER TABLE `childminder` ENABLE KEYS */;
112UNLOCK TABLES;
113
114--
115-- Table structure for table `cm_status`
116--
117
118DROP TABLE IF EXISTS `cm_status`;
119CREATE TABLE `cm_status` (
120 `id` int(5) default NULL,
121 `name` varchar(150) default NULL
122) ENGINE=InnoDB DEFAULT CHARSET=latin1;
123
124--
125-- Dumping data for table `cm_status`
126--
127
128LOCK TABLES `cm_status` WRITE;
129/*!40000 ALTER TABLE `cm_status` DISABLE KEYS */;
130INSERT INTO `cm_status` VALUES (1,'Arbejder'),(2,'Syg'),(3,'Ferie');
131/*!40000 ALTER TABLE `cm_status` ENABLE KEYS */;
132UNLOCK TABLES;
133
134--
135-- Table structure for table `cm_status_history`
136--
137
138DROP TABLE IF EXISTS `cm_status_history`;
139CREATE TABLE `cm_status_history` (
140 `cm_status_id` int(5) default NULL,
141 `cm_id` int(50) default NULL,
142 `created` datetime default NULL,
143 `id` int(50) NOT NULL auto_increment,
144 `user_id` int(50) default NULL,
145 `comment` varchar(5000) default NULL,
146 PRIMARY KEY (`id`),
147 KEY `id_index` (`cm_id`)
148) ENGINE=InnoDB AUTO_INCREMENT=124 DEFAULT CHARSET=latin1;
149
150--
151-- Dumping data for table `cm_status_history`
152--
153
154LOCK TABLES `cm_status_history` WRITE;
155/*!40000 ALTER TABLE `cm_status_history` DISABLE KEYS */;
156INSERT INTO `cm_status_history` VALUES (1,23,'2008-03-23 23:01:37',3,12,'Status ved oprettelse'),(1,24,'2008-03-23 23:05:00',4,12,'Status ved oprettelse'),(2,24,'2008-03-25 19:01:20',5,12,'Jeg er syg'),(3,24,'2008-03-25 19:03:31',6,12,'Jeg er lige taget til teneriffe med snolst'),(1,24,'2008-03-25 19:07:55',7,12,''),(2,24,'2008-03-25 19:14:04',8,12,''),(3,24,'2008-03-25 19:15:40',9,12,''),(2,24,'2008-03-25 19:25:45',10,12,''),(1,25,'2008-03-25 21:35:54',11,12,'Status ved oprettelse'),(3,25,'2008-04-19 00:12:26',12,12,''),(1,25,'2008-04-19 00:12:38',13,12,''),(1,24,'2008-04-19 00:12:46',14,12,''),(1,26,'2008-04-19 23:30:50',15,12,'Status ved oprettelse'),(1,27,'2008-04-19 23:31:32',16,12,'Status ved oprettelse'),(1,28,'2008-04-19 23:32:18',17,12,'Status ved oprettelse'),(1,29,'2008-04-19 23:33:22',18,12,'Status ved oprettelse'),(1,30,'2008-04-19 23:33:51',19,12,'Status ved oprettelse'),(1,31,'2008-04-20 18:10:35',20,12,'Status ved oprettelse'),(1,32,'2008-04-20 18:11:12',21,12,'Status ved oprettelse'),(2,28,'2008-04-20 18:15:17',22,12,'Hun har influenza'),(3,24,'2008-04-21 20:24:17',23,14,'Flødeskum.'),(1,33,'2008-04-21 20:43:17',24,14,'Status ved oprettelse'),(1,33,'2008-04-21 20:43:36',25,14,'Jeg er sød :)'),(1,24,'2008-04-26 12:31:16',26,12,'Han er hjemvendt!'),(1,34,'2008-04-26 13:19:01',27,12,'Status ved oprettelse'),(2,34,'2008-04-26 13:19:44',28,12,''),(3,24,'2008-05-07 23:18:28',29,12,'aaaa'),(2,33,'2008-05-08 17:57:09',30,12,''),(2,24,'2008-05-08 18:16:25',31,12,''),(1,24,'2008-05-08 18:20:39',32,12,''),(3,24,'2008-05-08 18:22:22',33,12,''),(1,24,'2008-05-08 18:22:53',34,12,''),(3,24,'2008-05-08 18:24:20',35,12,''),(1,24,'2008-05-08 18:24:31',36,12,''),(2,24,'2008-05-08 18:44:16',37,12,''),(1,24,'2008-05-08 18:45:46',38,12,''),(2,24,'2008-05-08 18:48:21',39,12,''),(1,24,'2008-05-08 18:48:31',40,12,''),(1,33,'2008-05-08 18:48:34',41,12,''),(3,29,'2008-05-08 18:55:28',42,12,''),(1,29,'2008-05-08 19:04:58',43,12,''),(3,25,'2008-05-08 23:18:59',44,12,''),(1,25,'2008-05-08 23:19:04',45,12,''),(2,30,'2008-05-08 23:19:15',46,12,''),(1,30,'2008-05-08 23:19:21',47,12,''),(1,35,'2008-05-11 13:13:27',48,12,'Status ved oprettelse'),(1,36,'2008-05-11 13:14:32',49,12,'Status ved oprettelse'),(1,37,'2008-05-11 13:15:27',50,12,'Status ved oprettelse'),(1,38,'2008-05-11 13:16:06',51,12,'Status ved oprettelse'),(1,39,'2008-05-11 13:16:54',52,12,'Status ved oprettelse'),(1,40,'2008-05-11 14:33:30',53,12,'Status ved oprettelse'),(3,35,'2008-05-11 19:16:37',54,12,''),(1,35,'2008-05-11 19:17:33',55,12,''),(2,36,'2008-05-14 22:25:18',56,12,''),(3,36,'2008-05-14 22:32:16',57,12,''),(2,38,'2008-05-15 20:58:34',58,12,''),(1,38,'2008-05-15 21:02:48',59,12,''),(2,38,'2008-05-15 21:02:53',60,12,''),(2,38,'2008-05-15 21:03:50',61,12,''),(2,38,'2008-05-15 21:04:09',62,12,''),(2,38,'2008-05-15 21:05:54',63,12,''),(2,38,'2008-05-15 21:06:10',64,12,''),(2,38,'2008-05-15 21:07:16',65,12,''),(2,38,'2008-05-15 21:08:08',66,12,''),(2,38,'2008-05-15 22:43:06',67,12,''),(2,38,'2008-05-17 17:16:58',68,12,''),(2,38,'2008-05-17 17:19:43',69,12,''),(2,38,'2008-05-20 16:52:32',70,12,''),(2,35,'2008-05-20 17:29:54',71,12,''),(2,36,'2008-05-20 17:29:58',72,12,''),(2,40,'2008-05-20 17:30:16',73,12,''),(2,37,'2008-05-20 17:32:33',74,12,''),(1,35,'2008-05-20 17:33:22',75,12,''),(1,38,'2008-05-20 17:33:25',76,12,''),(1,36,'2008-05-20 17:33:28',77,12,''),(1,40,'2008-05-20 17:33:31',78,12,''),(1,37,'2008-05-20 17:33:44',79,12,''),(2,35,'2008-05-20 17:57:15',80,12,''),(1,35,'2008-05-20 17:59:20',81,12,''),(2,35,'2008-05-20 19:25:08',82,12,''),(2,37,'2008-05-20 19:25:24',83,12,''),(1,35,'2008-05-20 20:04:14',84,12,''),(1,35,'2008-05-20 20:04:21',85,12,''),(2,36,'2008-05-20 20:05:17',86,12,''),(2,38,'2008-05-20 20:06:12',87,12,''),(2,38,'2008-05-21 21:11:05',88,12,''),(2,36,'2008-05-21 21:11:50',89,12,''),(1,36,'2008-05-21 21:20:40',90,12,''),(2,36,'2008-05-21 21:20:51',91,12,''),(1,37,'2008-05-21 21:27:21',92,12,''),(1,37,'2008-05-21 21:30:32',93,12,''),(1,37,'2008-05-21 21:31:12',94,12,''),(1,37,'2008-05-21 21:32:14',95,12,''),(1,37,'2008-05-21 21:32:40',96,12,''),(2,37,'2008-05-21 21:39:55',97,12,''),(1,38,'2008-05-21 21:45:49',98,12,''),(1,36,'2008-05-21 21:49:02',99,12,''),(2,36,'2008-05-21 21:49:12',100,12,''),(2,38,'2008-05-21 21:55:15',101,12,''),(2,38,'2008-05-21 22:29:28',102,12,''),(1,38,'2008-05-21 22:29:37',103,12,''),(2,38,'2008-05-21 22:29:52',104,12,''),(1,38,'2008-05-21 23:08:44',105,12,''),(1,36,'2008-05-21 23:10:48',106,12,''),(1,37,'2008-05-21 23:10:58',107,12,''),(2,38,'2008-05-21 23:11:28',108,12,''),(1,38,'2008-05-21 23:15:43',109,12,''),(1,35,'2008-05-21 23:16:37',110,12,''),(1,38,'2008-05-21 23:16:41',111,12,''),(1,36,'2008-05-21 23:16:45',112,12,''),(1,40,'2008-05-21 23:16:48',113,12,''),(1,37,'2008-05-21 23:16:56',114,12,''),(1,37,'2008-05-21 23:17:00',115,12,''),(2,38,'2008-05-21 23:17:18',116,12,''),(2,37,'2008-05-21 23:17:34',117,12,''),(2,36,'2008-05-21 23:18:17',118,12,''),(1,38,'2008-05-21 23:20:17',119,12,''),(2,38,'2008-06-03 23:32:16',120,12,''),(1,37,'2008-06-03 23:40:03',121,12,''),(1,38,'2008-06-03 23:40:28',122,12,''),(1,36,'2008-06-03 23:41:47',123,12,'');
157/*!40000 ALTER TABLE `cm_status_history` ENABLE KEYS */;
158UNLOCK TABLES;
159
160--
161-- Table structure for table `log`
162--
163
164DROP TABLE IF EXISTS `log`;
165CREATE TABLE `log` (
166 `time` datetime default NULL,
167 `action` varchar(1000) default NULL,
168 `user_id` int(50) default NULL,
169 `area_id` int(50) default NULL,
170 `actiontype` varchar(100) default NULL,
171 `username` varchar(150) default NULL,
172 `id` int(50) NOT NULL auto_increment,
173 PRIMARY KEY (`id`)
174) ENGINE=InnoDB AUTO_INCREMENT=392 DEFAULT CHARSET=latin1;
175
176--
177-- Dumping data for table `log`
178--
179
180LOCK TABLES `log` WRITE;
181/*!40000 ALTER TABLE `log` DISABLE KEYS */;
182INSERT INTO `log` VALUES ('2008-03-05 19:51:00','User: Adam Cohen (User ID: 7) logged in.',7,1,'login','Adam Cohen',1),('2008-03-08 23:37:16','User: Adam Cohen (User ID: 7) logged in.',7,1,'login','Adam Cohen',2),('2008-03-09 01:08:31','User: adam Cohen (User ID: 7) logged in.',7,1,'login','adam Cohen',3),('2008-03-09 11:57:35','User: Adam Cohen (User ID: 7) logged in.',7,1,'login','Adam Cohen',4),('2008-03-09 11:58:33','User: Adam Cohen (User ID: 7) created childminder: Mette Cohen (Childminder ID: Resource id #6)',7,1,'create childminder','Adam Cohen',5),('2008-03-09 12:34:39','Username: Adam Cohen (User ID: 7) created Username: Adam Cohen (User ID: Resource id #6)',7,1,'create user','Adam Cohen',6),('2008-03-09 13:00:21','Username: Adam Cohen (User ID: 7) created Username: Adam Cohen (User ID: Resource id #6)',7,1,'create user','Adam Cohen',7),('2008-03-09 13:02:37','User: Hr Kalle (User ID: 11) logged in.',11,1,'login','Hr Kalle',8),('2008-03-09 17:33:24','User: adam (User ID: 12) logged in.',12,2,'login','adam',9),('2008-03-09 18:21:20','User: adam (User ID: 12) created childminder: Jytte Koren (Childminder ID: Resource id #6)',12,2,'create childminder','adam',10),('2008-03-09 20:04:17','User: adam (User ID: 12) logged in.',12,2,'login','adam',11),('2008-03-10 17:35:46','User: adam (User ID: 12) logged in.',12,2,'login','adam',12),('2008-03-10 20:20:43','User: adam (User ID: 12) logged in.',12,2,'login','adam',13),('2008-03-10 21:10:15','User: adam (User ID: 12) logged in.',12,2,'login','adam',14),('2008-03-11 19:12:35','User: adam (User ID: 12) logged in.',12,2,'login','adam',15),('2008-03-11 19:52:09','User: adam (User ID: 12) logged in.',12,2,'login','adam',16),('2008-03-11 21:45:55','User: adam (User ID: 12) logged in.',12,2,'login','adam',17),('2008-03-12 16:25:17','User: adam (User ID: 12) logged in.',12,2,'login','adam',18),('2008-03-12 19:12:07','User: adam (User ID: 12) logged in.',12,2,'login','adam',19),('2008-03-12 19:34:41','User: adam (User ID: 12) logged in.',12,2,'login','adam',20),('2008-03-12 19:37:17','User: adam (User ID: 12) logged in.',12,2,'login','adam',21),('2008-03-13 16:14:02','User: adam (User ID: 12) logged in.',12,2,'login','adam',22),('2008-03-13 19:18:08','User: adam (User ID: 12) logged in.',12,2,'login','adam',23),('2008-03-15 13:58:46','User: adam (User ID: 12) logged in.',12,2,'login','adam',24),('2008-03-15 13:59:20','User: adam (User ID: 12) logged in.',12,2,'login','adam',25),('2008-03-15 16:05:44','User: adam (User ID: 12) logged in.',12,2,'login','adam',26),('2008-03-15 16:06:05','User: adam (User ID: 12) logged in.',12,2,'login','adam',27),('2008-03-15 18:40:08','User: adam (User ID: 12) logged in.',12,2,'login','adam',28),('2008-03-16 11:55:05','User: adam (User ID: 12) logged in.',12,2,'login','adam',29),('2008-03-16 12:29:46','',0,12,'2','User: adam (User ID: 12) created childminder: Adam Cohen (Childminder ID: Resource id #6)',30),('2008-03-16 12:51:14','',0,12,'2','User: adam (User ID: 12) created childminder: Jonathan Cohen (Childminder ID: Resource id #6)',31),('2008-03-16 12:58:55','',0,12,'2','User: adam (User ID: 12) created childminder: Mette Cohen (Childminder ID: Resource id #6)',32),('2008-03-16 13:25:06','User: adam (User ID: 12) logged in.',12,2,'login','adam',33),('2008-03-16 14:19:17','User: adam (User ID: 12) logged in.',12,2,'login','adam',34),('2008-03-16 15:29:41','User: adam (User ID: 12) logged in.',12,2,'login','adam',35),('2008-03-16 15:35:14','User: adam (User ID: 12) logged in.',12,2,'login','adam',36),('2008-03-16 16:46:04','User: adam (User ID: 12) logged in.',12,2,'login','adam',37),('2008-03-16 16:50:03','User: adam (User ID: 12) logged in.',12,2,'login','adam',38),('2008-03-16 17:48:42','User: adam (User ID: 12) logged in.',12,2,'login','adam',39),('2008-03-16 18:04:02','User: adam (User ID: 12) logged in.',12,2,'login','adam',40),('2008-03-16 19:11:17','User: adam (User ID: 12) logged in.',12,2,'login','adam',41),('2008-03-16 22:01:42','User: adam (User ID: 12) logged in.',12,2,'login','adam',42),('2008-03-16 22:06:33','User: adam (User ID: 12) logged in.',12,2,'login','adam',43),('2008-03-16 22:11:25','User: adam (User ID: 12) logged in.',12,2,'login','adam',44),('2008-03-16 22:50:32','User: adam (User ID: 12) logged in.',12,2,'login','adam',45),('2008-03-17 00:41:47','User: adam (User ID: 12) logged in.',12,2,'login','adam',46),('2008-03-17 00:42:32','User: adam (User ID: 12) logged in.',12,2,'login','adam',47),('2008-03-17 12:24:35','User: adam (User ID: 12) logged in.',12,2,'login','adam',48),('2008-03-17 22:18:45','User: adam (User ID: 12) logged in.',12,2,'login','adam',49),('2008-03-18 13:01:19','User: adam (User ID: 12) logged in.',12,2,'login','adam',50),('2008-03-18 13:01:58','User: adam (User ID: 12) logged in.',12,2,'login','adam',51),('2008-03-18 14:51:57','User: adam (User ID: ) logged in.',12,2,'login','adam',52),('2008-03-18 14:52:20','User: adam (User ID: 12) changed Childminder: Jonathan Cohen (Childminder ID: 8) status to sick',12,2,'report sick','adam',53),('2008-03-18 14:54:27','User: adam (User ID: 12) changed Childminder: Mette Cohen (Childminder ID: 9) status to sick',12,2,'report sick','adam',54),('2008-03-18 14:58:42','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to fresh',12,2,'report fresh','adam',55),('2008-03-18 14:59:58','User: adam (User ID: 12) changed Childminder: Jonathan Cohen (Childminder ID: 8) status to fresh',12,2,'report fresh','adam',56),('2008-03-18 15:18:09','User: adam (User ID: 12) changed Childminder: Mette Cohen (Childminder ID: 9) status to fresh',12,2,'report fresh','adam',57),('2008-03-18 15:18:17','User: adam (User ID: 12) changed Childminder: (Childminder ID: ) status to fresh',12,2,'report fresh','adam',58),('2008-03-18 15:20:01','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to sick',12,2,'report sick','adam',59),('2008-03-18 15:23:44','User: adam (User ID: ) logged in.',12,2,'login','adam',60),('2008-03-18 15:23:47','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to fresh',12,2,'report fresh','adam',61),('2008-03-18 15:27:50','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to sick',12,2,'report sick','adam',62),('2008-03-18 15:43:03','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to fresh',12,2,'report fresh','adam',63),('2008-03-18 15:44:03','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to sick',12,2,'report sick','adam',64),('2008-03-18 15:44:08','User: adam (User ID: 12) changed Childminder: (Childminder ID: ) status to sick',12,2,'report sick','adam',65),('2008-03-18 15:44:55','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to fresh',12,2,'report fresh','adam',66),('2008-03-18 15:45:17','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to sick',12,2,'report sick','adam',67),('2008-03-18 15:46:59','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to fresh',12,2,'report fresh','adam',68),('2008-03-18 15:47:38','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to sick',12,2,'report sick','adam',69),('2008-03-18 15:47:44','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to fresh',12,2,'report fresh','adam',70),('2008-03-18 15:48:35','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to sick',12,2,'report sick','adam',71),('2008-03-18 15:48:39','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to fresh',12,2,'report fresh','adam',72),('2008-03-18 16:11:01','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to sick',12,2,'report sick','adam',73),('2008-03-18 16:11:06','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to fresh',12,2,'report fresh','adam',74),('2008-03-18 17:16:10','User: adam (User ID: ) logged in.',12,2,'login','adam',75),('2008-03-18 17:17:40','User: adam (User ID: ) logged in.',12,2,'login','adam',76),('2008-03-18 18:17:44','User: adam (User ID: ) logged in.',12,2,'login','adam',77),('2008-03-20 00:41:04','User: adam (User ID: ) logged in.',12,2,'login','adam',78),('2008-03-20 00:41:15','User: adam (User ID: 12) changed Childminder: Jonathan Cohen (Childminder ID: 8) status to sick',12,2,'report sick','adam',79),('2008-03-20 00:41:30','User: adam (User ID: 12) changed Childminder: Jonathan Cohen (Childminder ID: 8) status to fresh',12,2,'report fresh','adam',80),('2008-03-20 15:40:58','User: adam (User ID: ) logged in.',12,2,'login','adam',81),('2008-03-20 15:41:06','User: adam (User ID: 12) changed Childminder: Jonathan Cohen (Childminder ID: 8) status to sick',12,2,'report sick','adam',82),('2008-03-20 15:51:33','User: adam (User ID: ) logged in.',12,2,'login','adam',83),('2008-03-20 15:55:43','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to sick',12,2,'report sick','adam',84),('2008-03-20 15:59:31','User: adam (User ID: 12) changed Childminder: Jonathan Cohen (Childminder ID: 8) status to fresh',12,2,'report fresh','adam',85),('2008-03-20 15:59:36','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to fresh',12,2,'report fresh','adam',86),('2008-03-20 16:00:40','User: adam (User ID: 12) changed Childminder: Jonathan Cohen (Childminder ID: 8) status to sick',12,2,'report sick','adam',87),('2008-03-20 18:04:56','User: adam (User ID: ) logged in.',12,2,'login','adam',88),('2008-03-20 18:08:23','User: adam (User ID: 12) changed Childminder: Jonathan Cohen (Childminder ID: 8) status to fresh',12,2,'report fresh','adam',89),('2008-03-20 23:24:42','User: adam (User ID: ) logged in.',12,2,'login','adam',90),('2008-03-20 23:25:01','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to sick',12,2,'report sick','adam',91),('2008-03-20 23:26:05','User: adam (User ID: ) logged in.',12,2,'login','adam',92),('2008-03-20 23:28:33','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to fresh',12,2,'report fresh','adam',93),('2008-03-20 23:28:46','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to sick',12,2,'report sick','adam',94),('2008-03-20 23:28:54','User: adam (User ID: 12) changed Childminder: Adam Cohen (Childminder ID: 7) status to fresh',12,2,'report fresh','adam',95),('2008-03-21 01:24:48','User: adam (User ID: ) logged in.',12,2,'login','adam',96),('2008-03-21 02:04:42','User: adam (User ID: ) logged in.',12,2,'login','adam',97),('2008-03-21 12:59:03','User: adam (User ID: ) logged in.',12,2,'login','adam',98),('2008-03-21 13:11:49','User: adam (User ID: ) logged in.',12,2,'login','adam',99),('2008-03-21 13:22:55','User: adam (User ID: ) logged in.',12,2,'login','adam',100),('2008-03-21 15:21:25','User: adam (User ID: ) logged in.',12,2,'login','adam',101),('2008-03-21 15:22:03','User: adam (User ID: ) logged in.',12,2,'login','adam',102),('2008-03-21 17:10:50','User: adam (User ID: ) logged in.',12,2,'login','adam',103),('2008-03-23 16:11:16','User: adam (User ID: ) logged in.',12,2,'login','adam',104),('2008-03-23 17:53:11','User: adam (User ID: ) logged in.',12,2,'login','adam',105),('2008-03-23 18:46:39','User: adam (User ID: ) logged in.',12,2,'login','adam',106),('2008-03-23 20:41:49','User: adam (User ID: ) logged in.',12,2,'login','adam',107),('2008-03-23 21:03:24','User: adam (User ID: ) logged in.',12,2,'login','adam',108),('2008-03-23 22:00:09','User: adam (User ID: 12) created childminder: Adam Cohen (Childminder ID: )',12,2,'create childminder','adam',109),('2008-03-23 22:20:46','User: adam (User ID: 12) created childminder: Adam Cohen (Childminder ID: Resource id #7)',12,2,'create childminder','adam',110),('2008-03-23 22:23:01','User: adam (User ID: 12) created childminder: Adam Cohen (Childminder ID: )',12,2,'create childminder','adam',111),('2008-03-23 22:23:55','User: adam (User ID: 12) created childminder: Adam Cohen (Childminder ID: )',12,2,'create childminder','adam',112),('2008-03-23 22:24:34','User: adam (User ID: 12) created childminder: Adam Cohen (Childminder ID: )',12,2,'create childminder','adam',113),('2008-03-23 22:29:10','User: adam (User ID: 12) created childminder: Adam Cohen (Childminder ID: Resource id #8)',12,2,'create childminder','adam',114),('2008-03-23 22:36:06','User: adam (User ID: 12) created childminder: Adam Cohen (Childminder ID: )',12,2,'create childminder','adam',115),('2008-03-23 23:01:37','User: adam (User ID: 12) created childminder: Adam Cohen (Childminder ID: Resource id #7)',12,2,'create childminder','adam',116),('2008-03-23 23:05:00','User: adam (User ID: 12) created childminder: Adam Cohen (Childminder ID: 24)',12,2,'create childminder','adam',117),('2008-03-24 14:55:16','User: adam (User ID: ) logged in.',12,2,'login','adam',118),('2008-03-24 16:58:52','User: adam (User ID: ) logged in.',12,2,'login','adam',119),('2008-03-24 17:05:58','User: adam (User ID: ) logged in.',12,2,'login','adam',120),('2008-03-24 17:08:55','User: adam (User ID: ) logged in.',12,2,'login','adam',121),('2008-03-24 17:36:19','User: adam (User ID: ) logged in.',12,2,'login','adam',122),('2008-03-24 18:37:19','User: adam (User ID: ) logged in.',12,2,'login','adam',123),('2008-03-24 19:34:22','User: adam (User ID: ) logged in.',12,2,'login','adam',124),('2008-03-24 23:10:50','User: adam (User ID: ) logged in.',12,2,'login','adam',125),('2008-03-25 17:08:17','User: adam (User ID: ) logged in.',12,2,'login','adam',126),('2008-03-25 17:10:45','User: adam (User ID: ) logged in.',12,2,'login','adam',127),('2008-03-25 19:00:19','User: adam (User ID: ) logged in.',12,2,'login','adam',128),('2008-03-25 19:01:20','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to (Status ID: 2)',12,2,'change status','adam',129),('2008-03-25 19:03:31','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Syg(Status ID: 3)',12,2,'change status','adam',130),('2008-03-25 19:06:49','User: adam (User ID: ) logged in.',12,2,'login','adam',131),('2008-03-25 19:07:55','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Ferie (Status ID: 1)',12,2,'change status','adam',132),('2008-03-25 19:14:04','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Arbejder (Status ID: 2)',12,2,'change status','adam',133),('2008-03-25 19:15:40','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Syg (Status ID: 3)',12,2,'change status','adam',134),('2008-03-25 19:20:21','User: adam (User ID: ) logged in.',12,2,'login','adam',135),('2008-03-25 19:21:58','User: adam (User ID: ) logged in.',12,2,'login','adam',136),('2008-03-25 19:25:45','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Ferie (Status ID: 2)',12,2,'change status','adam',137),('2008-03-25 19:32:57','User: adam (User ID: ) logged in.',12,2,'login','adam',138),('2008-03-25 20:40:40','User: adam (User ID: ) logged in.',12,2,'login','adam',139),('2008-03-25 21:13:47','Username: adam (User ID: 12) created Username: adam (User ID: Resource id #8) with rights: 3',12,2,'create user','adam',140),('2008-03-25 21:35:54','User: adam (User ID: 12) created childminder: Ron Cohen (Childminder ID: 25)',12,2,'create childminder','adam',141),('2008-03-25 21:41:20','User: adam (User ID: ) logged in.',12,2,'login','adam',142),('2008-03-25 21:43:28','User: adam (User ID: ) logged in.',12,2,'login','adam',143),('2008-03-26 09:57:42','User: adam (User ID: ) logged in.',12,2,'login','adam',144),('2008-03-26 10:44:44','User: adam (User ID: 12) created child: Jonathan Cohen (Child ID: )',12,2,'create child','adam',145),('2008-03-26 11:19:44','User: adam (User ID: ) logged in.',12,2,'login','adam',146),('2008-03-26 12:57:09','User: adam (User ID: ) logged in.',12,2,'login','adam',147),('2008-03-26 21:42:33','User: adam (User ID: ) logged in.',12,2,'login','adam',148),('2008-04-02 18:12:35','User: adam (User ID: ) logged in.',12,2,'login','adam',149),('2008-04-02 18:41:34','User: adam (User ID: ) logged in.',12,2,'login','adam',150),('2008-04-02 23:04:02','User: adam (User ID: ) logged in.',12,2,'login','adam',151),('2008-04-02 23:05:09','User: adam (User ID: ) logged in.',12,2,'login','adam',152),('2008-04-03 15:09:07','User: adam (User ID: ) logged in.',12,2,'login','adam',153),('2008-04-03 21:11:03','User: adam (User ID: ) logged in.',12,2,'login','adam',154),('2008-04-03 21:32:21','User: adam (User ID: 12) created child: Johnny Cash (Child ID: )',12,2,'create child','adam',155),('2008-04-03 21:37:27','User: adam (User ID: 12) created child: Johnny Cash (Child ID: )',12,2,'create child','adam',156),('2008-04-03 21:45:40','User: adam (User ID: 12) created child: Johnny Cash (Child ID: )',12,2,'create child','adam',157),('2008-04-03 21:55:36','User: adam (User ID: 12) created child: Johnny Cash (Child ID: )',12,2,'create child','adam',158),('2008-04-03 22:11:09','User: adam (User ID: 12) created child: Johnny Cash (Child ID: 14)',12,2,'create child','adam',159),('2008-04-03 22:12:51','User: adam (User ID: 12) created child: Johnny Cash (Child ID: 16)',12,2,'create child','adam',160),('2008-04-03 22:14:59','User: adam (User ID: 12) created child: Johnny Cash (Child ID: 17)',12,2,'create child','adam',161),('2008-04-03 22:17:10','User: adam (User ID: 12) created child: Johnny Cash (Child ID: 18)',12,2,'create child','adam',162),('2008-04-03 22:18:02','User: adam (User ID: 12) created child: Abrahim Kollase (Child ID: 19)',12,2,'create child','adam',163),('2008-04-04 17:31:35','User: adam (User ID: ) logged in.',12,2,'login','adam',164),('2008-04-05 14:47:03','User: adam (User ID: ) logged in.',12,2,'login','adam',165),('2008-04-18 22:42:00','User: adam (User ID: ) logged in.',12,2,'login','adam',166),('2008-04-18 23:40:04','User: adam (User ID: ) logged in.',12,2,'login','adam',167),('2008-04-19 00:12:26','User: adam (User ID: 12) changed status for childminder: Ron Cohen (Childminder ID: 25) to Arbejder (Status ID: 3)',12,2,'change status','adam',168),('2008-04-19 00:12:38','User: adam (User ID: 12) changed status for childminder: Ron Cohen (Childminder ID: 25) to Ferie (Status ID: 1)',12,2,'change status','adam',169),('2008-04-19 00:12:46','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Syg (Status ID: 1)',12,2,'change status','adam',170),('2008-04-19 12:18:52','User: adam (User ID: ) logged in.',12,2,'login','adam',171),('2008-04-19 14:12:00','User: adam (User ID: ) logged in.',12,2,'login','adam',172),('2008-04-19 19:31:06','User: adam (User ID: ) logged in.',12,2,'login','adam',173),('2008-04-19 22:58:08','User: adam (User ID: ) logged in.',12,2,'login','adam',174),('2008-04-19 23:30:50','User: adam (User ID: 12) created childminder: Rene Jensen (Childminder ID: 26)',12,2,'create childminder','adam',175),('2008-04-19 23:31:32','User: adam (User ID: 12) created childminder: Lise Hansen (Childminder ID: 27)',12,2,'create childminder','adam',176),('2008-04-19 23:32:18','User: adam (User ID: 12) created childminder: Dorthe Klausen (Childminder ID: 28)',12,2,'create childminder','adam',177),('2008-04-19 23:33:22','User: adam (User ID: 12) created childminder: Thomas Klausen (Childminder ID: 29)',12,2,'create childminder','adam',178),('2008-04-19 23:33:51','User: adam (User ID: 12) created childminder: Tina Jensen (Childminder ID: 30)',12,2,'create childminder','adam',179),('2008-04-19 23:42:49','User: adam (User ID: 12) created child: John Allan (Child ID: 21)',12,2,'create child','adam',180),('2008-04-19 23:46:21','User: adam (User ID: 12) created child: Laurits Langballe (Child ID: 22)',12,2,'create child','adam',181),('2008-04-20 01:12:28','User: adam (User ID: ) logged in.',12,2,'login','adam',182),('2008-04-20 18:09:54','User: adam (User ID: ) logged in.',12,2,'login','adam',183),('2008-04-20 18:10:35','User: adam (User ID: 12) created childminder: Nissim Koren (Childminder ID: 31)',12,2,'create childminder','adam',184),('2008-04-20 18:11:12','User: adam (User ID: 12) created childminder: Jytte Koren (Childminder ID: 32)',12,2,'create childminder','adam',185),('2008-04-20 18:13:28','User: adam (User ID: 12) created child: Jonathan Koren (Child ID: 23)',12,2,'create child','adam',186),('2008-04-20 18:15:17','User: adam (User ID: 12) changed status for childminder: Dorthe Klausen (Childminder ID: 28) to Arbejder (Status ID: 2)',12,2,'change status','adam',187),('2008-04-20 23:21:28','User: adam (User ID: ) logged in.',12,2,'login','adam',188),('2008-04-21 20:17:04','User: adam (User ID: ) logged in.',12,2,'login','adam',189),('2008-04-21 20:18:14','Username: adam (User ID: 12) created Username: adam (User ID: Resource id #8) with rights: 3',12,2,'create user','adam',190),('2008-04-21 20:18:24','User: anders (User ID: ) logged in.',14,2,'login','anders',191),('2008-04-21 20:21:13','User: anders (User ID: ) logged in.',14,2,'login','anders',192),('2008-04-21 20:24:17','User: anders (User ID: 14) changed status for childminder: Adam Cohen (Childminder ID: 24) to Arbejder (Status ID: 3)',14,2,'change status','anders',193),('2008-04-21 20:31:35','User: anders (User ID: ) logged in.',14,2,'login','anders',194),('2008-04-21 20:43:17','User: anders (User ID: 14) created childminder: Anders Skjæveland (Childminder ID: 33)',14,2,'create childminder','anders',195),('2008-04-21 20:43:36','User: anders (User ID: 14) changed status for childminder: Anders Skjæveland (Childminder ID: 33) to Arbejder (Status ID: 1)',14,2,'change status','anders',196),('2008-04-26 12:27:38','User: adam (User ID: ) logged in.',12,2,'login','adam',197),('2008-04-26 12:31:16','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Ferie (Status ID: 1)',12,2,'change status','adam',198),('2008-04-26 12:33:53','User: adam (User ID: ) logged in.',12,2,'login','adam',199),('2008-04-26 13:03:47','User: adam (User ID: ) logged in.',12,2,'login','adam',200),('2008-04-26 13:17:02','User: adam (User ID: ) logged in.',12,2,'login','adam',201),('2008-04-26 13:19:01','User: adam (User ID: 12) created childminder: Birte Pedersen (Childminder ID: 34)',12,2,'create childminder','adam',202),('2008-04-26 13:19:44','User: adam (User ID: 12) changed status for childminder: Birte Pedersen (Childminder ID: 34) to Arbejder (Status ID: 2)',12,2,'change status','adam',203),('2008-04-26 13:22:56','User: adam (User ID: 12) created child: Jonas Møller (Child ID: 24)',12,2,'create child','adam',204),('2008-04-26 13:27:15','User: adam (User ID: 12) created child: Itamar Cohen (Child ID: 25)',12,2,'create child','adam',205),('2008-04-26 18:02:27','User: adam (User ID: ) logged in.',12,2,'login','adam',206),('2008-04-26 18:05:07','User: adam (User ID: ) logged in.',12,2,'login','adam',207),('2008-04-26 19:36:24','User: adam (User ID: ) logged in.',12,2,'login','adam',208),('2008-04-26 19:37:21','User: adam (User ID: ) logged in.',12,2,'login','adam',209),('2008-04-26 20:38:59','User: adam (User ID: 12) created child: Adam Cohen (Child ID: 26)',12,2,'create child','adam',210),('2008-04-26 21:37:19','Username: adam (User ID: 12) created Username: adam (User ID: Resource id #8) with rights: 1',12,2,'create user','adam',211),('2008-04-26 21:37:43','User: nissim (User ID: ) logged in.',15,2,'login','nissim',212),('2008-04-26 21:47:35','User: nissim (User ID: ) logged in.',15,2,'login','nissim',213),('2008-04-26 22:05:42','User: nissim (User ID: ) logged in.',15,2,'login','nissim',214),('2008-04-26 22:10:28','User: nissim (User ID: ) logged in.',15,2,'login','nissim',215),('2008-04-26 22:15:15','User: nissim (User ID: ) logged in.',15,2,'login','nissim',216),('2008-04-26 22:17:13','User: nissim (User ID: ) logged in.',15,2,'login','nissim',217),('2008-04-26 22:31:41','User: nissim (User ID: ) logged in.',15,2,'login','nissim',218),('2008-04-26 22:39:25','User: nissim (User ID: ) logged in.',15,2,'login','nissim',219),('2008-04-26 22:48:54','User: adam (User ID: ) logged in.',12,2,'login','adam',220),('2008-04-26 23:48:34','User: adam (User ID: 12) created section: Områååde navn (Section ID: 1)',12,2,'create section','adam',221),('2008-04-26 23:50:57','User: adam (User ID: 12) created section: Køge (Section ID: 2)',12,2,'create section','adam',222),('2008-04-29 18:52:26','User: adam (User ID: ) logged in.',12,2,'login','adam',223),('2008-05-03 12:23:28','User: adam (User ID: ) logged in.',12,2,'login','adam',224),('2008-05-03 13:41:50','User: adam (User ID: ) logged in.',12,2,'login','adam',225),('2008-05-03 13:50:07','User: adam (User ID: ) logged in.',12,2,'login','adam',226),('2008-05-03 14:48:34','User: adam (User ID: ) logged in.',12,2,'login','adam',227),('2008-05-06 19:53:35','User: adam (User ID: ) logged in.',12,2,'login','adam',228),('2008-05-06 19:57:36','User: adam (User ID: ) logged in.',12,2,'login','adam',229),('2008-05-06 20:07:47','User: adam (User ID: ) logged in.',12,2,'login','adam',230),('2008-05-06 20:32:12','User: adam (User ID: ) logged in.',12,2,'login','adam',231),('2008-05-06 20:32:49','User: adam (User ID: ) logged in.',12,2,'login','adam',232),('2008-05-07 18:22:01','User: adam (User ID: ) logged in.',12,2,'login','adam',233),('2008-05-07 18:38:09','User: adam (User ID: ) logged in.',12,2,'login','adam',234),('2008-05-07 21:26:26','User: adam (User ID: ) logged in.',12,2,'login','adam',235),('2008-05-07 22:47:10','User: adam (User ID: ) logged in.',12,2,'login','adam',236),('2008-05-07 23:18:28','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Arbejder (Status ID: 3)',12,2,'change status','adam',237),('2008-05-08 14:50:44','User: adam (User ID: ) logged in.',12,2,'login','adam',238),('2008-05-08 17:57:09','User: adam (User ID: 12) changed status for childminder: Anders Skjæveland (Childminder ID: 33) to Arbejder (Status ID: 2)',12,2,'change status','adam',239),('2008-05-08 18:16:25','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Ferie (Status ID: 2)',12,2,'change status','adam',240),('2008-05-08 18:20:39','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Syg (Status ID: 1)',12,2,'change status','adam',241),('2008-05-08 18:22:22','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Arbejder (Status ID: 3)',12,2,'change status','adam',242),('2008-05-08 18:22:53','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Ferie (Status ID: 1)',12,2,'change status','adam',243),('2008-05-08 18:24:20','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Arbejder (Status ID: 3)',12,2,'change status','adam',244),('2008-05-08 18:24:31','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Ferie (Status ID: 1)',12,2,'change status','adam',245),('2008-05-08 18:44:16','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Arbejder (Status ID: 2)',12,2,'change status','adam',246),('2008-05-08 18:45:46','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Syg (Status ID: 1)',12,2,'change status','adam',247),('2008-05-08 18:48:21','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Arbejder (Status ID: 2)',12,2,'change status','adam',248),('2008-05-08 18:48:31','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 24) to Syg (Status ID: 1)',12,2,'change status','adam',249),('2008-05-08 18:48:34','User: adam (User ID: 12) changed status for childminder: Anders Skjæveland (Childminder ID: 33) to Syg (Status ID: 1)',12,2,'change status','adam',250),('2008-05-08 18:55:28','User: adam (User ID: 12) changed status for childminder: Thomas Klausen (Childminder ID: 29) to Arbejder (Status ID: 3)',12,2,'change status','adam',251),('2008-05-08 19:04:58','User: adam (User ID: 12) changed status for childminder: Thomas Klausen (Childminder ID: 29) to Ferie (Status ID: 1)',12,2,'change status','adam',252),('2008-05-08 23:18:59','User: adam (User ID: 12) changed status for childminder: Ron Cohen (Childminder ID: 25) to Arbejder (Status ID: 3)',12,2,'change status','adam',253),('2008-05-08 23:19:04','User: adam (User ID: 12) changed status for childminder: Ron Cohen (Childminder ID: 25) to Ferie (Status ID: 1)',12,2,'change status','adam',254),('2008-05-08 23:19:15','User: adam (User ID: 12) changed status for childminder: Tina Jensen (Childminder ID: 30) to Arbejder (Status ID: 2)',12,2,'change status','adam',255),('2008-05-08 23:19:21','User: adam (User ID: 12) changed status for childminder: Tina Jensen (Childminder ID: 30) to Syg (Status ID: 1)',12,2,'change status','adam',256),('2008-05-08 23:20:48','User: adam (User ID: ) logged in.',12,2,'login','adam',257),('2008-05-08 23:21:07','User: adam (User ID: ) logged in.',12,2,'login','adam',258),('2008-05-09 21:23:33','User: adam (User ID: ) logged in.',12,2,'login','adam',259),('2008-05-09 22:02:08','User: adam (User ID: ) logged in.',12,2,'login','adam',260),('2008-05-09 22:02:33','User: adam (User ID: 12) created section: Nordvestkvarteret (Section ID: 3)',12,2,'create section','adam',261),('2008-05-09 22:20:12','User: adam (User ID: 12) created child: test er (Child ID: 27)',12,2,'create child','adam',262),('2008-05-10 01:34:30','User: adam (User ID: ) logged in.',12,2,'login','adam',263),('2008-05-10 02:10:02','User: adam (User ID: ) logged in.',12,2,'login','adam',264),('2008-05-10 02:14:40','User: adam (User ID: ) logged in.',12,2,'login','adam',265),('2008-05-10 02:14:50','User: adam (User ID: ) logged in.',12,2,'login','adam',266),('2008-05-11 11:44:52','User: adam (User ID: ) logged in.',12,2,'login','adam',267),('2008-05-11 12:55:52','User: adam (User ID: 12) created child: Allan Wahid (Child ID: 31)',12,2,'create child','adam',268),('2008-05-11 13:04:22','User: adam (User ID: 12) created child: Walla Wahid (Child ID: 32)',12,2,'create child','adam',269),('2008-05-11 13:13:27','User: adam (User ID: 12) created childminder: Jytte Koren (Childminder ID: 35)',12,2,'create childminder','adam',270),('2008-05-11 13:14:32','User: adam (User ID: 12) created childminder: Nissim Koren (Childminder ID: 36)',12,2,'create childminder','adam',271),('2008-05-11 13:15:27','User: adam (User ID: 12) created childminder: Mette Langballe Cohen (Childminder ID: 37)',12,2,'create childminder','adam',272),('2008-05-11 13:16:06','User: adam (User ID: 12) created childminder: Itamar Cohen (Childminder ID: 38)',12,2,'create childminder','adam',273),('2008-05-11 13:16:54','User: adam (User ID: 12) created childminder: Ron Langballe Cohen (Childminder ID: 39)',12,2,'create childminder','adam',274),('2008-05-11 13:18:05','User: adam (User ID: 12) created child: Jonathan Cohen (Child ID: 33)',12,2,'create child','adam',275),('2008-05-11 13:23:28','User: adam (User ID: 12) created child: Adam Langballe Cohen (Child ID: 34)',12,2,'create child','adam',276),('2008-05-11 14:31:11','User: adam (User ID: 12) created child: Jonathan Langballe Cohen (Child ID: 35)',12,2,'create child','adam',277),('2008-05-11 14:33:30','User: adam (User ID: 12) created childminder: Troels Clausen (Childminder ID: 40)',12,2,'create childminder','adam',278),('2008-05-11 18:58:45','User: adam (User ID: 12) edited childminder: Itamar Cohen (Childminder ID: 40) SQL: UPDATE childminder SET firstname = \'Itamar\', lastname = \'Cohen\', homephone = \'97910782\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en test\', creator_id = \'12\', created = NOW(), section_id = \'3\' WHERE id = 40',12,2,'edit childminder','adam',279),('2008-05-11 18:58:53','User: adam (User ID: 12) edited childminder: Itamaran Cohen (Childminder ID: 40) SQL: UPDATE childminder SET firstname = \'Itamaran\', lastname = \'Cohen\', homephone = \'97910782\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en test\', creator_id = \'12\', created = NOW(), section_id = \'3\' WHERE id = 40',12,2,'edit childminder','adam',280),('2008-05-11 18:58:59','User: adam (User ID: 12) edited childminder: Itamaran Cohen (Childminder ID: 40) SQL: UPDATE childminder SET firstname = \'Itamaran\', lastname = \'Cohen\', homephone = \'97910782\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en test\', creator_id = \'12\', created = NOW(), section_id = \'2\' WHERE id = 40',12,2,'edit childminder','adam',281),('2008-05-11 18:59:07','User: adam (User ID: 12) edited childminder: Itamar Cohen (Childminder ID: 40) SQL: UPDATE childminder SET firstname = \'Itamar\', lastname = \'Cohen\', homephone = \'97910782\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en test\', creator_id = \'12\', created = NOW(), section_id = \'3\' WHERE id = 40',12,2,'edit childminder','adam',282),('2008-05-11 18:59:18','User: adam (User ID: 12) edited childminder: Itamar Cohen (Childminder ID: 40) SQL: UPDATE childminder SET firstname = \'Itamar\', lastname = \'Cohen\', homephone = \'97910782\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en test\', creator_id = \'12\', created = NOW(), section_id = \'3\' WHERE id = 40',12,2,'edit childminder','adam',283),('2008-05-11 19:16:27','User: adam (User ID: 12) edited childminder: Adam Cohen (Childminder ID: 35) SQL: UPDATE childminder SET firstname = \'Adam\', lastname = \'Cohen\', homephone = \'97910782\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en test\', creator_id = \'12\', created = NOW(), section_id = \'3\' WHERE id = 35',12,2,'edit childminder','adam',284),('2008-05-11 19:16:37','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 35) to Arbejder (Status ID: 3)',12,2,'change status','adam',285),('2008-05-11 19:16:50','User: adam (User ID: 12) edited childminder: Adam Cohen (Childminder ID: 35) SQL: UPDATE childminder SET firstname = \'Adam\', lastname = \'Cohen\', homephone = \'97910782\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en teeest\', creator_id = \'12\', created = NOW(), section_id = \'3\' WHERE id = 35',12,2,'edit childminder','adam',286),('2008-05-11 19:17:03','User: adam (User ID: 12) edited childminder: Adama Cohena (Childminder ID: 35) SQL: UPDATE childminder SET firstname = \'Adama\', lastname = \'Cohena\', homephone = \'979107822a\', cellphone = \'61704567aaa\', adress = \'ahornvej 27\', town = \'Thisteda\', zipcode = \'7700a\', area_id = \'2\', comment = \'Det er en teeesta\', creator_id = \'12\', created = NOW(), section_id = \'3\' WHERE id = 35',12,2,'edit childminder','adam',287),('2008-05-11 19:17:09','User: adam (User ID: 12) edited childminder: Adama Cohena (Childminder ID: 35) SQL: UPDATE childminder SET firstname = \'Adama\', lastname = \'Cohena\', homephone = \'979107822a\', cellphone = \'61704567aaa\', adress = \'ahornvej 27a\', town = \'Thisteda\', zipcode = \'7700a\', area_id = \'2\', comment = \'Det er en teeesta\', creator_id = \'12\', created = NOW(), section_id = \'3\' WHERE id = 35',12,2,'edit childminder','adam',288),('2008-05-11 19:17:28','User: adam (User ID: 12) edited childminder: Adam Cohen (Childminder ID: 35) SQL: UPDATE childminder SET firstname = \'Adam\', lastname = \'Cohen\', homephone = \'979107822\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en teeest\', creator_id = \'12\', created = NOW(), section_id = \'3\' WHERE id = 35',12,2,'edit childminder','adam',289),('2008-05-11 19:17:33','User: adam (User ID: 12) changed status for childminder: Adam Cohen (Childminder ID: 35) to Ferie (Status ID: 1)',12,2,'change status','adam',290),('2008-05-11 23:03:45','User: adam (User ID: 12) deleted childminder: Adam Cohen (Childminder ID: 35)',12,2,'delete child','adam',291),('2008-05-11 23:08:31','User: adam (User ID: 12) edited childminder: Adam Cohen (Childminder ID: 36) SQL: UPDATE childminder SET firstname = \'Adam\', lastname = \'Cohen\', homephone = \'97910782\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en test\', creator_id = \'12\', created = NOW(), section_id = \'3\' WHERE id = 36',12,2,'edit childminder','adam',292),('2008-05-11 23:08:42','User: adam (User ID: 12) deleted childminder: Adam Cohen (Childminder ID: 35)',12,2,'delete child','adam',293),('2008-05-11 23:38:40','User: adam (User ID: 12) deleted childminder: Adam Cohen (Childminder ID: 35)',12,2,'delete child','adam',294),('2008-05-11 23:39:07','User: adam (User ID: 12) deleted childminder: Adam Cohen (Childminder ID: 36)',12,2,'delete child','adam',295),('2008-05-11 23:39:44','User: adam (User ID: 12) edited childminder: Itamar Cohen (Childminder ID: 37) SQL: UPDATE childminder SET firstname = \'Itamar\', lastname = \'Cohen\', homephone = \'97910782\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en test\', creator_id = \'12\', created = NOW(), section_id = \'3\' WHERE id = 37',12,2,'edit childminder','adam',296),('2008-05-11 23:43:40','User: adam (User ID: 12) edited childminder: Mette Cohen (Childminder ID: 39) SQL: UPDATE childminder SET firstname = \'Mette\', lastname = \'Cohen\', homephone = \'97910782\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en test\', creator_id = \'12\', created = NOW(), section_id = \'3\' WHERE id = 39',12,2,'edit childminder','adam',297),('2008-05-11 23:43:52','User: adam (User ID: 12) edited childminder: Itamar Cohen (Childminder ID: 40) SQL: UPDATE childminder SET firstname = \'Itamar\', lastname = \'Cohen\', homephone = \'97910782\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en test\', creator_id = \'12\', created = NOW(), section_id = \'3\' WHERE id = 40',12,2,'edit childminder','adam',298),('2008-05-11 23:49:06','User: adam (User ID: 12) edited childminder: Nissim Koren (Childminder ID: 37) SQL: UPDATE childminder SET firstname = \'Nissim\', lastname = \'Koren\', homephone = \'12344234\', cellphone = \'52353241\', adress = \'Skivevej 23\', town = \'Skive\', zipcode = \'6300\', area_id = \'2\', comment = \'Det er en test\', creator_id = \'12\', created = NOW(), section_id = \'2\' WHERE id = 37',12,2,'edit childminder','adam',299),('2008-05-12 19:18:22','User: adam (User ID: ) logged in.',12,2,'login','adam',300),('2008-05-13 19:57:36','User: adam (User ID: ) logged in.',12,2,'login','adam',301),('2008-05-13 19:58:13','User: adam (User ID: 12) deleted childminder: Itam Cohen (Childminder ID: 38)',12,2,'delete child','adam',302),('2008-05-13 22:45:12','User: adam (User ID: ) logged in.',12,2,'login','adam',303),('2008-05-13 22:49:23','User: adam (User ID: 12) edited childminder: Adama Cohen (Childminder ID: 36) SQL: UPDATE childminder SET firstname = \'Adama\', lastname = \'Cohen\', homephone = \'97910782\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en test\', creator_id = \'12\', created = NOW(), section_id = \'3\' WHERE id = 36',12,2,'edit childminder','adam',304),('2008-05-13 22:49:36','User: adam (User ID: 12) edited childminder: Adama Cohen (Childminder ID: 36) SQL: UPDATE childminder SET firstname = \'Adama\', lastname = \'Cohen\', homephone = \'97910782\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en test\', creator_id = \'12\', created = NOW(), section_id = \'3\' WHERE id = 36',12,2,'edit childminder','adam',305),('2008-05-14 14:44:50','User: adam (User ID: ) logged in.',12,2,'login','adam',306),('2008-05-14 14:58:33','User: adam (User ID: ) logged in.',12,2,'login','adam',307),('2008-05-14 15:03:32','User: adam (User ID: 12) edited childminder: Adam Cohen (Childminder ID: 35) SQL: UPDATE childminder SET firstname = \'Adam\', lastname = \'Cohen\', homephone = \'979107822\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en teeest\', creator_id = \'12\', created = NOW(), section_id = \'3\', email = \'cohenadam@gmail.com\' WHERE id = 35',12,2,'edit childminder','adam',308),('2008-05-14 15:03:40','User: adam (User ID: 12) edited childminder: Adam Cohen (Childminder ID: 35) SQL: UPDATE childminder SET firstname = \'Adam\', lastname = \'Cohen\', homephone = \'979107822\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en teeest\', creator_id = \'12\', created = NOW(), section_id = \'3\', email = \'cohenadam@gmail.com\' WHERE id = 35',12,2,'edit childminder','adam',309),('2008-05-14 21:53:15','User: adam (User ID: 12) created child: testbarn efternavnet (Child ID: 36)',12,2,'create child','adam',310),('2008-05-14 22:25:18','User: adam (User ID: 12) changed status for childminder: Adama Cohen (Childminder ID: 36) to Arbejder (Status ID: 2)',12,2,'change status','adam',311),('2008-05-14 22:32:16','User: adam (User ID: 12) changed status for childminder: Adama Cohen (Childminder ID: 36) to Syg (Status ID: 3)',12,2,'change status','adam',312),('2008-05-14 22:35:38','User: adam (User ID: 12) edited childminder: Hansi Cohen (Childminder ID: 36) SQL: UPDATE childminder SET firstname = \'Hansi\', lastname = \'Cohen\', homephone = \'97910782\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en test\', creator_id = \'12\', created = NOW(), section_id = \'3\', email = \'\' WHERE id = 36',12,2,'edit childminder','adam',313),('2008-05-14 22:36:08','User: adam (User ID: 12) edited childminder: Ali Cohen (Childminder ID: 38) SQL: UPDATE childminder SET firstname = \'Ali\', lastname = \'Cohen\', homephone = \'97910782\', cellphone = \'61704567\', adress = \'ahornvej 27\', town = \'Thisted\', zipcode = \'7700\', area_id = \'2\', comment = \'Det er en test\', creator_id = \'12\', created = NOW(), section_id = \'3\', email = \'\' WHERE id = 38',12,2,'edit childminder','adam',314),('2008-05-14 22:50:33','User: adam (User ID: 12) created child: adami Cash (Child ID: 37)',12,2,'create child','adam',315),('2008-05-15 15:55:54','User: adam (User ID: ) logged in.',12,2,'login','adam',316),('2008-05-15 15:56:42','User: adam (User ID: ) logged in.',12,2,'login','adam',317),('2008-05-15 16:10:13','User: adam (User ID: 12) created child: Allan Johnson (Child ID: 38)',12,2,'create child','adam',318),('2008-05-15 19:20:21','User: adam (User ID: ) logged in.',12,2,'login','adam',319),('2008-05-15 20:58:34','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 38) to Arbejder (Status ID: 2)',12,2,'change status','adam',320),('2008-05-15 21:02:48','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 38) to Syg (Status ID: 1)',12,2,'change status','adam',321),('2008-05-15 21:02:53','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 38) to Arbejder (Status ID: 2)',12,2,'change status','adam',322),('2008-05-15 21:03:50','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 38) to Syg (Status ID: 2)',12,2,'change status','adam',323),('2008-05-15 21:04:09','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 38) to Syg (Status ID: 2)',12,2,'change status','adam',324),('2008-05-15 21:05:54','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 38) to Syg (Status ID: 2)',12,2,'change status','adam',325),('2008-05-15 21:06:10','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 38) to Syg (Status ID: 2)',12,2,'change status','adam',326),('2008-05-15 21:07:16','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 38) to Syg (Status ID: 2)',12,2,'change status','adam',327),('2008-05-15 21:08:08','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 38) to Syg (Status ID: 2)',12,2,'change status','adam',328),('2008-05-15 22:43:06','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 38) to Syg (Status ID: 2)',12,2,'change status','adam',329),('2008-05-15 22:45:01','User: adam (User ID: ) logged in.',12,2,'login','adam',330),('2008-05-16 17:42:06','User: adam (User ID: ) logged in.',12,2,'login','adam',331),('2008-05-17 17:16:52','User: adam (User ID: ) logged in.',12,2,'login','adam',332),('2008-05-17 17:16:58','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 38) to Syg (Status ID: 2)',12,2,'change status','adam',333),('2008-05-17 17:19:43','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 38) to Syg (Status ID: 2)',12,2,'change status','adam',334),('2008-05-20 16:17:54','User: adam (User ID: ) logged in.',12,2,'login','adam',335),('2008-05-20 16:52:32','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 38) to Syg (Status ID: 2)',12,2,'change status','adam',336),('2008-05-20 17:29:54','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 35) to Arbejder (Status ID: 2)',12,2,'change status','adam',337),('2008-05-20 17:29:58','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 36) to Ferie (Status ID: 2)',12,2,'change status','adam',338),('2008-05-20 17:30:16','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 40) to Arbejder (Status ID: 2)',12,2,'change status','adam',339),('2008-05-20 17:32:33','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 37) to Arbejder (Status ID: 2)',12,2,'change status','adam',340),('2008-05-20 17:33:22','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 35) to Syg (Status ID: 1)',12,2,'change status','adam',341),('2008-05-20 17:33:25','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 38) to Syg (Status ID: 1)',12,2,'change status','adam',342),('2008-05-20 17:33:28','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 36) to Syg (Status ID: 1)',12,2,'change status','adam',343),('2008-05-20 17:33:31','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 40) to Syg (Status ID: 1)',12,2,'change status','adam',344),('2008-05-20 17:33:44','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 37) to Syg (Status ID: 1)',12,2,'change status','adam',345),('2008-05-20 17:57:15','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 35) to Arbejder (Status ID: 2)',12,2,'change status','adam',346),('2008-05-20 17:59:20','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 35) to Syg (Status ID: 1)',12,2,'change status','adam',347),('2008-05-20 19:25:08','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 35) to Arbejder (Status ID: 2)',12,2,'change status','adam',348),('2008-05-20 19:25:24','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 37) to Arbejder (Status ID: 2)',12,2,'change status','adam',349),('2008-05-20 20:04:14','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 35) to Syg (Status ID: 1)',12,2,'change status','adam',350),('2008-05-20 20:04:21','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 35) to Arbejder (Status ID: 1)',12,2,'change status','adam',351),('2008-05-20 20:05:17','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 36) to Arbejder (Status ID: 2)',12,2,'change status','adam',352),('2008-05-20 20:06:12','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 38) to Arbejder (Status ID: 2)',12,2,'change status','adam',353),('2008-05-21 17:14:51','User: adam (User ID: ) logged in.',12,2,'login','adam',354),('2008-05-21 21:11:05','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 38) to Syg (Status ID: 2)',12,2,'change status','adam',355),('2008-05-21 21:11:50','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 36) to Syg (Status ID: 2)',12,2,'change status','adam',356),('2008-05-21 21:20:40','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 36) to Syg (Status ID: 1)',12,2,'change status','adam',357),('2008-05-21 21:20:51','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 36) to Arbejder (Status ID: 2)',12,2,'change status','adam',358),('2008-05-21 21:27:21','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 37) to Syg (Status ID: 1)',12,2,'change status','adam',359),('2008-05-21 21:30:32','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 37) to Arbejder (Status ID: 1)',12,2,'change status','adam',360),('2008-05-21 21:31:12','User: adam (User ID: 12) changed status for childminder: (Childminder ID: 37) to Arbejder (Status ID: 1)',12,2,'change status','adam',361),('2008-05-21 21:32:14','User: adam (User ID: 12) changed status for childminder: Nissim (Childminder ID: 37) to Arbejder (Status ID: 1)',12,2,'change status','adam',362),('2008-05-21 21:32:40','User: adam (User ID: 12) changed status for childminder: Nissim (Childminder ID: 37) to Arbejder (Status ID: 1)',12,2,'change status','adam',363),('2008-05-21 21:39:55','User: adam (User ID: 12) changed status for childminder: Nissim (Childminder ID: 37) to Arbejder (Status ID: 2)',12,2,'change status','adam',364),('2008-05-21 21:45:49','User: adam (User ID: 12) changed status for childminder: a (Childminder ID: 38) to Syg (Status ID: 1)',12,2,'change status','adam',365),('2008-05-21 21:49:02','User: adam (User ID: 12) changed status for childminder: a (Childminder ID: 36) to Syg (Status ID: 1)',12,2,'change status','adam',366),('2008-05-21 21:49:12','User: adam (User ID: 12) changed status for childminder: a (Childminder ID: 36) to Arbejder (Status ID: 2)',12,2,'change status','adam',367),('2008-05-21 21:55:15','User: adam (User ID: 12) changed status for childminder: a (Childminder ID: 38) to Arbejder (Status ID: 2)',12,2,'change status','adam',368),('2008-05-21 22:29:28','User: adam (User ID: 12) changed status for childminder: a (Childminder ID: 38) to Syg (Status ID: 2)',12,2,'change status','adam',369),('2008-05-21 22:29:37','User: adam (User ID: 12) changed status for childminder: a (Childminder ID: 38) to Syg (Status ID: 1)',12,2,'change status','adam',370),('2008-05-21 22:29:52','User: adam (User ID: 12) changed status for childminder: a (Childminder ID: 38) to Arbejder (Status ID: 2)',12,2,'change status','adam',371),('2008-05-21 23:08:44','User: adam (User ID: 12) changed status for childminder: a (Childminder ID: 38) to Syg (Status ID: 1)',12,2,'change status','adam',372),('2008-05-21 23:10:48','User: adam (User ID: 12) changed status for childminder: n (Childminder ID: 36) to Syg (Status ID: 1)',12,2,'change status','adam',373),('2008-05-21 23:10:58','User: adam (User ID: 12) changed status for childminder: n (Childminder ID: 37) to Syg (Status ID: 1)',12,2,'change status','adam',374),('2008-05-21 23:11:28','User: adam (User ID: 12) changed status for childminder: a (Childminder ID: 38) to Arbejder (Status ID: 2)',12,2,'change status','adam',375),('2008-05-21 23:15:43','User: adam (User ID: 12) changed status for childminder: Ali (Childminder ID: 38) to Syg (Status ID: 1)',12,2,'change status','adam',376),('2008-05-21 23:16:37','User: adam (User ID: 12) changed status for childminder: a (Childminder ID: 35) to Arbejder (Status ID: 1)',12,2,'change status','adam',377),('2008-05-21 23:16:41','User: adam (User ID: 12) changed status for childminder: a (Childminder ID: 38) to Arbejder (Status ID: 1)',12,2,'change status','adam',378),('2008-05-21 23:16:45','User: adam (User ID: 12) changed status for childminder: a (Childminder ID: 36) to Arbejder (Status ID: 1)',12,2,'change status','adam',379),('2008-05-21 23:16:48','User: adam (User ID: 12) changed status for childminder: a (Childminder ID: 40) to Arbejder (Status ID: 1)',12,2,'change status','adam',380),('2008-05-21 23:16:56','User: adam (User ID: 12) changed status for childminder: n (Childminder ID: 37) to Arbejder (Status ID: 1)',12,2,'change status','adam',381),('2008-05-21 23:17:00','User: adam (User ID: 12) changed status for childminder: n (Childminder ID: 37) to Arbejder (Status ID: 1)',12,2,'change status','adam',382),('2008-05-21 23:17:18','User: adam (User ID: 12) changed status for childminder: a (Childminder ID: 38) to Arbejder (Status ID: 2)',12,2,'chan