-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinv7_for_cron.sql
More file actions
3023 lines (2592 loc) · 171 KB
/
inv7_for_cron.sql
File metadata and controls
3023 lines (2592 loc) · 171 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- MySQL dump 10.13 Distrib 5.5.35, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: inv7
-- ------------------------------------------------------
-- Server version 5.5.35-0+wheezy1
/*!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 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `CallSign`
--
DROP TABLE IF EXISTS `CallSign`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `CallSign` (
`id` int(11) NOT NULL,
`callsign` varchar(7) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `CallSign`
--
LOCK TABLES `CallSign` WRITE;
/*!40000 ALTER TABLE `CallSign` DISABLE KEYS */;
INSERT INTO `CallSign` VALUES (1,'Med-1'),(2,'Med-2'),(3,'Med-3'),(4,'Med-4'),(5,'Med-5'),(6,'Med-6'),(7,'Med-7'),(8,'Med-8'),(9,'Med-9'),(10,'Med-10'),(11,'Med-11'),(12,'Med-12'),(13,'Med-13'),(14,'Med-14'),(15,'Med-15'),(16,'Med-16'),(20,'Med-20'),(22,'Med-22'),(24,'Med-24'),(90,'Backup1'),(91,'Backup2'),(99,'OOS');
/*!40000 ALTER TABLE `CallSign` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Category`
--
DROP TABLE IF EXISTS `Category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Category` (
`category_id` int(11) NOT NULL AUTO_INCREMENT,
`category_name` varchar(18) NOT NULL,
PRIMARY KEY (`category_id`)
) ENGINE=MyISAM AUTO_INCREMENT=40 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Category`
--
LOCK TABLES `Category` WRITE;
/*!40000 ALTER TABLE `Category` DISABLE KEYS */;
INSERT INTO `Category` VALUES (1,'Personnel'),(28,'Drug_Box'),(3,'Truck'),(4,'Monitor_Supplies'),(5,'IV'),(6,'Misc_Equip'),(7,'Immob-Splints'),(8,'Oxygen'),(9,'Pedi_Box'),(10,'Personal_Safety'),(11,'Controlled_Meds'),(12,'Station_eq'),(13,'Suction'),(14,'Trauma'),(15,'Trauma_Box'),(16,'Comments'),(17,'Portable_O2'),(18,'Glucometer'),(19,'Gloves'),(20,'Truck_Fluid'),(21,'LSB_Supplies'),(22,'Ventilator'),(23,'CPAP'),(24,'Portable_Suction'),(25,'Clipboard'),(26,'Page_Builder'),(29,'Pt_Transport_Devic'),(30,'Toughbook'),(27,'Airway_Box'),(31,'BLS O2 Management'),(32,'BLS_IV_Management'),(33,'BLS_Trauma'),(34,'BLS_Drugs'),(35,'OB_Kits'),(36,'Philips'),(37,'EZ_IO'),(38,'ETT_Pack'),(39,'Zoll');
/*!40000 ALTER TABLE `Category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Checksheets`
--
DROP TABLE IF EXISTS `Checksheets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Checksheets` (
`id` int(11) NOT NULL,
`ChecksheetName` varchar(32) DEFAULT NULL,
`merged` tinyint(11) DEFAULT NULL,
`sealable` tinyint(1) DEFAULT NULL,
`sealed` varchar(20) DEFAULT NULL,
`Signature` int(11) DEFAULT NULL,
`qset` int(11) DEFAULT NULL,
`published` tinyint(1) DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Checksheets`
--
LOCK TABLES `Checksheets` WRITE;
/*!40000 ALTER TABLE `Checksheets` DISABLE KEYS */;
INSERT INTO `Checksheets` VALUES (24,'Truck24',NULL,0,NULL,NULL,NULL,1),(24001,'Truck24_Airway',24,0,NULL,NULL,NULL,1),(24004,'Truck24_Drugs',24,0,NULL,NULL,NULL,1),(24006,'Truck24_Misc_Equipment',24,0,NULL,NULL,NULL,1),(24011,'Truck24_O2',24,0,NULL,NULL,NULL,1),(24002,'Truck24_IV',24,0,NULL,NULL,NULL,1),(24010,'Truck24_Immobilization',24,0,NULL,NULL,NULL,1),(24013,'Truck24_Personal_Safety',24,0,NULL,NULL,NULL,1),(24016,'Truck24_Suction',24,0,NULL,NULL,NULL,1),(24017,'Truck24_Trauma_Supplies',24,0,NULL,NULL,NULL,1),(24005,'Truck24_OB',24,1,NULL,NULL,NULL,1),(24007,'Truck24_Glucometer',24,0,NULL,NULL,NULL,1),(24009,'Truck24_Pt_Transport',24,0,NULL,NULL,NULL,1),(24014,'Truck24_Toughbook',24,0,NULL,NULL,NULL,1),(24021,'Zoll_24',24,0,NULL,NULL,NULL,1),(1,'Truck1',NULL,0,NULL,NULL,NULL,1),(1001,'Truck1_Airway_Box',1,1,NULL,NULL,NULL,1),(1004,'Truck1_Drug_Box',1,1,NULL,NULL,NULL,1),(1005,'Truck1_OB',1,1,NULL,NULL,NULL,1),(1012,'Truck1_Pedi_Box',1,1,NULL,NULL,NULL,1),(1015,'Truck1_Controlled_Medications',1,1,NULL,NULL,NULL,1),(1016,'Truck1_Suction',1,0,NULL,NULL,NULL,1),(1017,'Truck1_Trauma_Supplies',1,0,NULL,NULL,NULL,1),(1018,'Truck1_Trauma_Box',1,1,NULL,NULL,NULL,1),(1023,'Truck1_ETT_Pack',1,1,NULL,NULL,NULL,1),(1022,'Truck1_EZ_IO',1,1,NULL,NULL,NULL,1),(1014,'Truck1_Toughbook',1,0,NULL,NULL,NULL,1),(100,'Station1',0,0,NULL,NULL,NULL,1),(2001,'Truck2_Airway_Box',NULL,1,NULL,NULL,NULL,1);
/*!40000 ALTER TABLE `Checksheets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Comment_`
--
DROP TABLE IF EXISTS `Comment_`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Comment_` (
`comment_id` int(11) NOT NULL AUTO_INCREMENT,
`_comment` varchar(200) NOT NULL,
PRIMARY KEY (`comment_id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Comment_`
--
LOCK TABLES `Comment_` WRITE;
/*!40000 ALTER TABLE `Comment_` DISABLE KEYS */;
INSERT INTO `Comment_` VALUES (1,'This is a before sample'),(2,' \r\nsample of after '),(4,'this is a test'),(5,'The Rain in Spain'),(6,'This is a test');
/*!40000 ALTER TABLE `Comment_` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `How_Many`
--
DROP TABLE IF EXISTS `How_Many`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `How_Many` (
`hm_value_id` int(11) NOT NULL,
`hm_name` varchar(18) NOT NULL,
PRIMARY KEY (`hm_value_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `How_Many`
--
LOCK TABLES `How_Many` WRITE;
/*!40000 ALTER TABLE `How_Many` DISABLE KEYS */;
INSERT INTO `How_Many` VALUES (1,'1'),(2,'2'),(3,'3'),(4,'4'),(5,'5'),(6,'6'),(7,'7'),(8,'8'),(9,'9'),(10,'10'),(11,'11'),(12,'12'),(13,'13'),(14,'14'),(15,'15'),(16,'open'),(17,'O2'),(19,'tire'),(20,'cb'),(21,'miles'),(22,'personnel'),(23,'date'),(24,'refill'),(25,'comment'),(26,'na'),(27,'Calc');
/*!40000 ALTER TABLE `How_Many` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Items`
--
DROP TABLE IF EXISTS `Items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Items` (
`item_id` int(11) NOT NULL AUTO_INCREMENT,
`item_name` varchar(32) NOT NULL,
`perishable` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`item_id`)
) ENGINE=MyISAM AUTO_INCREMENT=563 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Items`
--
LOCK TABLES `Items` WRITE;
/*!40000 ALTER TABLE `Items` DISABLE KEYS */;
INSERT INTO `Items` VALUES (1,'Mileage',NULL),(2,'Service Due',NULL),(3,'Date',NULL),(4,'Series',NULL),(6,'Station',NULL),(7,'CallSign',NULL),(8,'Crew1',NULL),(9,'Crew2',NULL),(10,'BVM Adult',NULL),(11,'Esophageal Detector',NULL),(12,'Colormetric Adult',1),(13,'Laryngoscope Large',NULL),(14,'Miller Blade No.3',NULL),(15,'Macintosh Blade No.3',NULL),(16,'Miller Blade No.4',NULL),(17,'Macintosh Blade No.4',NULL),(18,'ETT Cuffed 6.0 ',1),(19,'ETT Cuffed 6.5',1),(20,'ETT Cuffed 7.0',1),(21,'ETT Cuffed 7.5',1),(22,'ETT Cuffed 8.0',1),(23,'ETT Cuffed 8.5',1),(24,'ETT Cuffed 9.0 ',1),(25,'Stylette Adult',NULL),(26,'Battery Spare -C-',NULL),(27,'Combie Tube',1),(28,'Quick Trach Kit',1),(29,'Nasopharyngeal Airway 24fr ',1),(30,'Nasopharyngeal Airway 26fr ',1),(31,'Nasopharyngeal Airway 28fr ',1),(32,'Nasopharyngeal Airway 30fr ',1),(33,'Nasopharyngeal Airway 32fr ',1),(34,'Oropharyngeal Airway 70mm',NULL),(35,'Oropharyngeal Airway 80mm',NULL),(36,'Oropharyngeal Airway 90mm',NULL),(37,'Oropharyngeal Airway 100mm ',NULL),(38,'Oropharyngeal Airway 110mm ',NULL),(39,'Magill Forceps Large',NULL),(41,'Syringe 10cc ',NULL),(42,'Tape Roll 1inch ',NULL),(43,'Tube Tamer',NULL),(44,'IV Angiocath 14g',1),(45,'IV Angiocath 16g',1),(46,'IV Angiocath 18g ',1),(47,'IV Angiocath 20g ',1),(48,'IV Angiocath 22g ',1),(49,'IV Angiocath 24g ',1),(50,'NG Tube',1),(51,'Ammonia Inhalants',NULL),(52,'Epinephrine 1-10000',1),(53,'Atropine 1mg/10ml',1),(54,'Atropine 1mg/1ml',1),(55,'Lidocaine 100mg',1),(56,'Nitro Tabs',1),(57,'Nitro Spray',1),(58,'Nitro Ointment 1% ',1),(59,'ASA Bottle of Baby',1),(60,'Adenocard 6mg',1),(61,'Albuterol',1),(62,'Amiodorone',1),(63,'Benadryl',1),(64,'Epinephrine 1-1000',1),(65,'Needles Subcutaneous',NULL),(66,'Lasix',1),(67,'Magnesium Sulfate 1g ',1),(68,'Magnesium Sulfate 5g',1),(69,'Narcan 2mg ',1),(70,'Phenergan',1),(71,'Decadron',1),(72,'Solu-Medrol',1),(73,'Glucagon',1),(74,'Vasopressin',1),(81,'Syringe 1cc ',NULL),(82,'Syringe 3cc ',NULL),(84,'Needles 18g ',NULL),(85,'Alcohol Swabs',NULL),(86,'Bandaids',NULL),(87,'Vacutainers Speckled Red',1),(88,'Vacutainers Green',1),(89,'Vacutainers Purple',1),(90,'Vacutainers Blue',1),(91,'Lancets',NULL),(92,'D-50',1),(93,'Sodium Bicarb',1),(94,'Dopamine Mix',1),(95,'Lidocaine Mix',1),(96,'Normal Saline Bag ',1),(97,'D-25',1),(98,'IV Line Macro ',NULL),(99,'IV Line Micro',NULL),(100,'IV Start Kit',NULL),(101,'IV Extension',NULL),(102,'Dial-a-flow Extension',NULL),(103,'Nasal Injector',NULL),(104,'Heat and AC',NULL),(105,'PA-Radio Amplifier',NULL),(106,'Siren',NULL),(107,'Horn',NULL),(108,'800Mhz Radio',NULL),(109,'VHF Radio',NULL),(110,'LR Bag',1),(556,'GPS Stand',0),(341,'Truck Maintenance Comment',NULL),(333,'Antifreeze',NULL),(115,'Buretrol Sets',NULL),(116,'Blood Infusion Tubing',NULL),(117,'IV Arm Boards',NULL),(118,'Pressure Infuser',NULL),(554,'GPS',0),(555,'Map Book',0),(558,'Syringe 10cc Slip-Tip',0),(557,'GPS Charger',0),(127,'Saline Flush',1),(128,'IO Sternal Kit',1),(129,'Tourniquettes',NULL),(130,'Brake Lights',NULL),(131,'Turn Signals',NULL),(132,'Backup Lights',NULL),(133,'Backup Alarm',NULL),(134,'Clearance Lights',NULL),(135,'Spot Light',NULL),(136,'Emergency Light',NULL),(137,'Compartment Lights',NULL),(138,'Head Lights',NULL),(139,'Tail Lights',NULL),(140,'Shoreline',NULL),(141,'Inverter',NULL),(142,'Emesis Basins',NULL),(143,'Body Bags',NULL),(144,'Bed Pan',NULL),(145,'Urinal',NULL),(146,'Sphygmomanometer',NULL),(147,'Stethoscope',NULL),(148,'System 5',NULL),(149,'Trauma Shears',NULL),(150,'Sheets',NULL),(151,'Towels',NULL),(152,'Blankets',NULL),(153,'Pillow',1),(154,'Gloves Sterile',NULL),(155,'Blankets/Caps',NULL),(156,'Kleenex Box',NULL),(157,'Paper Towels',NULL),(158,'Toilet Paper Roll',NULL),(159,'Glucometer',NULL),(160,'Glucometer Strips',1),(541,'Memory SD Card Adapter',0),(540,'Memory Card Reader',0),(164,'2X2s',NULL),(165,'Thermoscan',NULL),(166,'Thermoscan Shields',NULL),(167,'Stair-Chair',NULL),(168,'LSB',NULL),(169,'LSB Straps',NULL),(170,'CIDs',NULL),(171,'Scoop Stretcher',NULL),(172,'XP-1',NULL),(173,'Pediatric Board',NULL),(174,'Sager',NULL),(175,'Fire Extinguisher',NULL),(176,'Flashlight',NULL),(177,'Reflective Triangles',NULL),(178,'Booster Cables',NULL),(179,'Tow Strap',NULL),(180,'Haligan Tool',NULL),(181,'C-Collar Adult Adjustable',NULL),(184,'C-Collar Pediatric Adjustable',NULL),(186,'Board Splint Long',NULL),(187,'Board Splint Medium',NULL),(188,'Board Splint Short',NULL),(189,'Frac-Pac Sling',NULL),(190,'Frac-Pac Long Bone',NULL),(191,'Frac-Pac Large Long Bone',NULL),(192,'Frac-Pac Splint Long Leg',NULL),(193,'Frac-Pac Ankle Splint',NULL),(194,'Vehicle O2',NULL),(195,'Portable O2',NULL),(196,'Ventilator O2',NULL),(197,'Ventilator Circuits',NULL),(198,'CPAP O2',NULL),(199,'CPAP Circuits',NULL),(200,'D-Bottle O2 Spare',NULL),(201,'BVM Adult Spare',NULL),(202,'BVM Spare Pediatric',NULL),(203,'BVM Neonatal Spare',NULL),(204,'Non-Rebreathers',NULL),(205,'Nasal Cannulas',NULL),(206,'O2 Supply Tubing',NULL),(207,'Nebulizers',NULL),(208,'Nebulizer Mask',NULL),(209,'NRB Pediatric',NULL),(210,'Infant Medium Concentration Mask',NULL),(211,'Nebulizer Mask Pediatric',NULL),(212,'Pediatric Tape',NULL),(213,'IO Needle 15g ',1),(214,'IO Needle 18g ',1),(215,'Syringes 60cc',NULL),(218,'Laryngoscope Small',NULL),(219,'Macintosh Blade No.1',NULL),(220,'Macintosh Blade No.2',NULL),(221,'Miller Blade No.0',NULL),(222,'Miller Blade No.1',NULL),(223,'Miller Blade No.2',NULL),(224,'Battery Spare AA',NULL),(225,'Meconium Adapter',NULL),(226,'Magill Forceps',NULL),(227,'Stethoscope Pediatric',NULL),(228,'BVM Infant',NULL),(229,'BVM Pediatric',NULL),(230,'ETT Uncuffed 2.0mm ',1),(231,'ETT Uncuffed 2.5mm ',1),(232,'ETT Uncuffed 3.0mm ',1),(233,'ETT Uncuffed 3.5mm ',1),(234,'ETT Uncuffed 4.0mm ',1),(235,'ETT Uncuffed 4.5mm',1),(236,'ETT Uncuffed 5.0mm',1),(237,'ETT Uncuffed 5.5mm',1),(238,'ETT Uncuffed 6.0mm',1),(239,'Shielded Masks',NULL),(240,'Toughbook',NULL),(241,'Gloves Small Latex Free',NULL),(242,'Toughbook Truck Charger',NULL),(243,'Gloves Medium Latex Free',NULL),(244,'HP470 Printer',NULL),(245,'Gloves Large Latex Free',NULL),(246,'Printer Paper',NULL),(247,'Gloves Extra-Large Latex Free',NULL),(248,'Disposable Gowns',NULL),(249,'Shoe Covers',NULL),(250,'Hand Cleaner',NULL),(251,'Decon Spray',NULL),(252,'PFD',NULL),(253,'Throw Rope',NULL),(254,'Anti-Dote Kit',1),(255,'Sharps Box',NULL),(256,'Haz-Mat Book',NULL),(257,'Rain Parkas',NULL),(258,'TB Masks Large',NULL),(259,'TB Masks Medium',NULL),(260,'Morphine',1),(261,'Nimbex',1),(262,'Valium',1),(263,'Versed',1),(334,'Power Steering Fluid',NULL),(265,'Ativan',1),(266,'Succinycholine',1),(267,'Ice Pack Refresh',NULL),(268,'Trash Bags Large',NULL),(269,'Trash Bags Small',NULL),(270,'Lysol',NULL),(271,'Bleach',NULL),(272,'Detegent',NULL),(273,'Truck Soap',NULL),(274,'Tire Shine',NULL),(275,'Yaunkers',NULL),(276,'Suction Catheter 6fr',NULL),(277,'Suction Catheter 8fr',NULL),(278,'Suction Catheter 10fr ',NULL),(279,'Suction Catheter 14fr ',NULL),(280,'Suction Catheter 16fr ',NULL),(281,'Suction Catheter 18fr ',NULL),(283,'Tire Tread',NULL),(284,'Driver Side Front Tire PSI',NULL),(285,'Tire Passenger Side Front PSI',NULL),(286,'Tire Rear Driver Side Inside PSI',NULL),(287,'Tire Rear Driver Side Outside PS',NULL),(288,'Tire Rear Passenger Side Inside ',NULL),(289,'Tire Rear Passenger Side Outside',NULL),(290,'4X4s Box',1),(291,'Tape 1inch Box',NULL),(292,'Tape 3inch Box',NULL),(293,'2X2s Box',NULL),(294,'Burn Sheets',NULL),(295,'Dressing 10X30 ',NULL),(296,'Alcohol Prep Pads Box',NULL),(297,'Petrolatum Gauze',NULL),(298,'Roller Gauze 3 inch ',NULL),(299,'Roller Gauze 6 inch',NULL),(300,'Dressing 8X10',NULL),(301,'Cravats',NULL),(303,'Hot Packs',NULL),(304,'Cold Packs',NULL),(542,'Memory SD Card',0),(306,'Tape Roll 3inch ',NULL),(307,'Hemostats',NULL),(308,'Pen Light',NULL),(539,'Philips Memory Card',0),(310,'Gloves Exam',NULL),(538,'Battery 9V',0),(315,'4X4s',1),(537,'Rosetta Cable',0),(536,'Rosetta',0),(535,'Syringes_5cc',0),(534,'Toilet Brush',0),(553,'Philips SD Card',0),(552,'Philips SD Card Adapter',0),(551,'Philips ETCO2 Nasal Cannula',0),(550,'Rosetta Cable R2R',0),(549,'Philips 3-lead Cables',0),(548,'Philips Operational Check',0),(547,'Sager Pedi-Elastic Cravat',0),(546,'Sager Elastic Cravat',0),(545,'Sager Pediatric',0),(544,'Battery CR2032',0),(543,'Memory Card',0),(377,'Zoll Monitor Battery',NULL),(379,'Defib Jel',NULL),(380,'Zoll ECG Paper',NULL),(381,'Zoll Adult Pulse Ox Probe',NULL),(382,'Zoll Pedi Pulse Ox Probe',NULL),(383,'Zoll Thigh NIBP Cuff',NULL),(384,'Zoll Adult NIBP Cuff',NULL),(385,'Zoll Small NIBP Cuff',NULL),(386,'Zoll ETCO2 Cable',NULL),(387,'Zoll ETCO2 Adapter',NULL),(388,'Zoll Neonate ETCO2 Adapter',NULL),(389,'Zoll 12-lead Cables',NULL),(390,'Electrodes Adult',NULL),(391,'Electrodes Pediatric',1),(392,'Electrodes Spare Pack',NULL),(393,'Zoll Adult Pacing Pads',1),(331,'Oil Level',NULL),(395,'HP Monitor Battery',NULL),(396,'HP Roll Paper',NULL),(397,'HP Adult Pulse Ox Probe',NULL),(398,'HP Pedi Pulse Ox Probe',NULL),(399,'HP Adult Pacing Pads',NULL),(400,'HP Pedi Pacing Pads',NULL),(401,'Philips Monitor Battery',NULL),(402,'Philips Roll Paper',NULL),(403,'Philips Pulse Ox Probe',NULL),(404,'Philips Pedi Pulse Ox Probe',NULL),(405,'Philips Thigh NIBP Cuff',NULL),(406,'Philips Adult NIBP Cuff',NULL),(407,'Philips Small NIBP Cuff',NULL),(335,'Brake Fluid',NULL),(409,'Philips ETCO2 Adapter',NULL),(410,'Philips 12-lead Cables',NULL),(411,'Philips Adult Pacing Pads',1),(412,'Philips Pedi Pacing Pads',1),(416,'Cheat Sheets',NULL),(415,'Shop Vac',NULL),(417,'Personnel_1',NULL),(418,'Personnel_2',NULL),(419,'Colormetric Pedi',1),(420,'Etomidate',1),(421,'HP470 Printer Power Adapter',NULL),(422,'HP470 Printer USB Adapter',NULL),(423,'Stair Chair Straps',NULL),(424,'Cot',NULL),(425,'Cot Straps',NULL),(426,'4-Point Harness',NULL),(427,'Head Storage Net',NULL),(428,'Scalpel',NULL),(429,'Reflective Vests',NULL),(430,'Fixed Suction w/gauge',NULL),(431,'Portable Suction w/gauge',NULL),(432,'Fixed Suction Collection Can',NULL),(433,'Portable Suction Collection Can',NULL),(434,'Fixed Suction Tubing',NULL),(435,'Portable Suction Tubing',NULL),(516,'MFC 8220 Printer Cartridge',0),(515,'MFC 8220 Printer',0),(527,'D5W',1),(526,'Heat Pump Air Filters',0),(525,'Light Bulbs',0),(524,'Dish Soap',0),(523,'ETT Cuffed 9.5',0),(522,'Wool blanket',0),(521,'Battery 9v',0),(520,'MFC 7840 Drum',0),(519,'MFC 7840W Toner',0),(514,'Comment',0),(513,'IO EZ Stabilizer',1),(512,'IO EZ 45mm x 15g',1),(511,'IO EZ 25mm x 15g',1),(533,'409 Cleaner',0),(532,'Cleanser',0),(531,'Bacteriostatic Water',1),(518,'Shop Vac Filter',0),(517,'MFC 8220 Printer Drum',0),(510,'IO EZ 15mm x 15g',1),(509,'IO EZ Drill',0),(470,'HP470 B/W Printer Cartridge',NULL),(471,'Tourniquettes Latex Free',NULL),(508,'Zofran 4mg',1),(474,'Cord Clamps',NULL),(475,'Placenta Bag and Tie',NULL),(332,'Transmission Fluid',NULL),(477,'Gauze Dressing',NULL),(478,'Bulb Syringe',NULL),(336,'Windshield Washing Fluid',NULL),(481,'Underpad (Chucks)',NULL),(337,'Fuel',NULL),(484,'Lube Jelly',NULL),(530,'Atropine 0.4mg',1),(529,'INT Caps',0),(528,'Tegaderms',1),(488,'Disposable Razor',NULL),(507,'Stylette Pedi',0),(490,'Zoll Pedi Pacing Pads',1),(491,'Zoll AED',NULL),(492,'A/C Cable',NULL),(493,'Zoll Paper Spare Roll',NULL),(495,'Ride Along',NULL),(559,'Suction Tubing Spare',0),(560,'Convenience Bag',0),(561,'Mileage Calculation',0),(562,'Irrigation Solution 500cc',1);
/*!40000 ALTER TABLE `Items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Maintenance`
--
DROP TABLE IF EXISTS `Maintenance`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Maintenance` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`checksheet_id` int(11) DEFAULT NULL,
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_id` varchar(11) NOT NULL,
`comments_id` int(11) NOT NULL,
`ascreenshot` varchar(64) DEFAULT NULL,
`pscreenshot` varchar(64) DEFAULT NULL,
`dateresolved` datetime DEFAULT '0000-00-00 00:00:00',
`pcomments_id` int(11) DEFAULT NULL,
`resolveduser_id` varchar(11) DEFAULT NULL,
`resolved` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Maintenance`
--
LOCK TABLES `Maintenance` WRITE;
/*!40000 ALTER TABLE `Maintenance` DISABLE KEYS */;
INSERT INTO `Maintenance` VALUES (1,1,'2014-02-04 17:57:48','1',1,'before.png','after.png','2014-02-04 18:00:25',2,'1',1),(2,1,'2014-02-26 17:18:05','185',4,'noimage.jpg','','0000-00-00 00:00:00',0,'',0);
/*!40000 ALTER TABLE `Maintenance` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Philips_Monitor_1`
--
DROP TABLE IF EXISTS `Philips_Monitor_1`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Philips_Monitor_1` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
`hm_value_id` int(11) NOT NULL,
`req` tinyint(1) NOT NULL,
`T_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Philips_Monitor_1`
--
LOCK TABLES `Philips_Monitor_1` WRITE;
/*!40000 ALTER TABLE `Philips_Monitor_1` DISABLE KEYS */;
INSERT INTO `Philips_Monitor_1` VALUES (1,401,36,1,2,0,'2012-03-12 16:47:20'),(2,402,36,1,3,0,'2012-03-12 16:47:20'),(3,403,36,1,20,0,'2012-03-12 16:47:20'),(4,404,36,1,20,0,'2012-03-12 16:47:20'),(5,405,36,1,20,0,'2012-03-12 16:47:20'),(6,406,36,1,20,0,'2012-03-12 16:47:20'),(7,407,36,1,20,0,'2012-03-12 16:47:20'),(8,409,36,1,2,0,'2012-03-12 16:47:20'),(9,410,36,1,20,0,'2012-03-12 16:47:20'),(10,411,36,1,2,0,'2012-03-12 16:47:20'),(11,412,36,1,2,0,'2012-03-12 16:47:20');
/*!40000 ALTER TABLE `Philips_Monitor_1` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Philips_Monitor_1_checksheet`
--
DROP TABLE IF EXISTS `Philips_Monitor_1_checksheet`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Philips_Monitor_1_checksheet` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`event_id` int(11) DEFAULT NULL,
`item_id` int(11) DEFAULT NULL,
`result` varchar(11) DEFAULT NULL,
`hm_value_id` varchar(11) DEFAULT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Philips_Monitor_1_checksheet`
--
LOCK TABLES `Philips_Monitor_1_checksheet` WRITE;
/*!40000 ALTER TABLE `Philips_Monitor_1_checksheet` DISABLE KEYS */;
/*!40000 ALTER TABLE `Philips_Monitor_1_checksheet` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Philips_Monitor_1_events`
--
DROP TABLE IF EXISTS `Philips_Monitor_1_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Philips_Monitor_1_events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`submitted` tinyint(4) DEFAULT NULL,
`merged` int(11) DEFAULT NULL,
`merger` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Philips_Monitor_1_events`
--
LOCK TABLES `Philips_Monitor_1_events` WRITE;
/*!40000 ALTER TABLE `Philips_Monitor_1_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `Philips_Monitor_1_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Series`
--
DROP TABLE IF EXISTS `Series`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Series` (
`id` varchar(9) NOT NULL,
`series` varchar(9) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Series`
--
LOCK TABLES `Series` WRITE;
/*!40000 ALTER TABLE `Series` DISABLE KEYS */;
INSERT INTO `Series` VALUES ('A-Shift','A-Shift'),('B-Shift','B-Shift'),('C-Shift','C-Shift');
/*!40000 ALTER TABLE `Series` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Station`
--
DROP TABLE IF EXISTS `Station`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Station` (
`id` tinyint(2) NOT NULL,
`Station` varchar(9) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Station`
--
LOCK TABLES `Station` WRITE;
/*!40000 ALTER TABLE `Station` DISABLE KEYS */;
INSERT INTO `Station` VALUES (1,'Station-1'),(2,'Station-2'),(3,'Station-3'),(4,'Station-4'),(5,'Station-5'),(6,'Station-6'),(7,'Event'),(8,'OOS'),(9,'Crew Hall'),(0,'CH--OOS');
/*!40000 ALTER TABLE `Station` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Station1`
--
DROP TABLE IF EXISTS `Station1`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Station1` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
`hm_value_id` int(11) NOT NULL,
`req` tinyint(1) NOT NULL,
`T_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Station1`
--
LOCK TABLES `Station1` WRITE;
/*!40000 ALTER TABLE `Station1` DISABLE KEYS */;
INSERT INTO `Station1` VALUES (1,268,12,1,20,0,'0000-00-00 00:00:00'),(2,269,12,1,20,0,'0000-00-00 00:00:00'),(3,270,12,1,20,0,'0000-00-00 00:00:00'),(4,271,12,1,20,0,'0000-00-00 00:00:00'),(5,272,12,1,20,0,'0000-00-00 00:00:00'),(6,273,12,1,20,0,'0000-00-00 00:00:00'),(7,274,12,1,20,0,'0000-00-00 00:00:00'),(8,415,12,27,20,0,'0000-00-00 00:00:00'),(9,514,16,1,25,0,'0000-00-00 00:00:00'),(10,158,12,27,20,0,'0000-00-00 00:00:00'),(11,515,12,41,20,0,'0000-00-00 00:00:00'),(12,516,12,41,20,0,'0000-00-00 00:00:00'),(13,517,12,41,20,0,'0000-00-00 00:00:00'),(14,246,12,41,20,0,'0000-00-00 00:00:00'),(15,518,12,27,20,0,'0000-00-00 00:00:00'),(16,524,12,1,20,0,'0000-00-00 00:00:00'),(17,525,12,1,20,0,'0000-00-00 00:00:00'),(18,525,12,1,20,0,'0000-00-00 00:00:00'),(19,532,12,1,20,0,'0000-00-00 00:00:00'),(20,533,12,1,20,0,'0000-00-00 00:00:00'),(21,534,12,1,20,0,'0000-00-00 00:00:00');
/*!40000 ALTER TABLE `Station1` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Station1_checksheet`
--
DROP TABLE IF EXISTS `Station1_checksheet`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Station1_checksheet` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`event_id` int(11) DEFAULT NULL,
`item_id` int(11) DEFAULT NULL,
`result` varchar(11) DEFAULT NULL,
`hm_value_id` varchar(11) DEFAULT NULL,
`category_id` int(11) DEFAULT NULL,
`subcategory_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Station1_checksheet`
--
LOCK TABLES `Station1_checksheet` WRITE;
/*!40000 ALTER TABLE `Station1_checksheet` DISABLE KEYS */;
INSERT INTO `Station1_checksheet` VALUES (1,1,268,'1','cb',12,1),(2,1,269,'1','cb',12,1),(3,1,270,'1','cb',12,1),(4,1,271,'1','cb',12,1),(5,1,272,'1','cb',12,1),(6,1,273,'1','cb',12,1),(7,1,274,'1','cb',12,1),(8,1,524,'1','cb',12,1),(9,1,525,'1','cb',12,1),(10,1,532,'1','cb',12,1),(11,1,533,'1','cb',12,1),(12,1,534,'1','cb',12,1),(13,1,415,'1','cb',12,27),(14,1,158,'1','cb',12,27),(15,1,518,'1','cb',12,27),(16,1,515,'1','cb',12,41),(17,1,516,'1','cb',12,41),(18,1,517,'1','cb',12,41),(19,1,246,'1','cb',12,41),(20,1,514,'','comment',16,1);
/*!40000 ALTER TABLE `Station1_checksheet` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Station1_events`
--
DROP TABLE IF EXISTS `Station1_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Station1_events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`submitted` int(11) DEFAULT NULL,
`merged` int(11) DEFAULT NULL,
`merger` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Station1_events`
--
LOCK TABLES `Station1_events` WRITE;
/*!40000 ALTER TABLE `Station1_events` DISABLE KEYS */;
INSERT INTO `Station1_events` VALUES (1,'2014-03-18 23:46:40',NULL,0,0);
/*!40000 ALTER TABLE `Station1_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Subcategory`
--
DROP TABLE IF EXISTS `Subcategory`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Subcategory` (
`subcategory_id` int(11) NOT NULL AUTO_INCREMENT,
`subcategory_name` varchar(32) NOT NULL,
`cols` tinyint(1) NOT NULL,
PRIMARY KEY (`subcategory_id`)
) ENGINE=MyISAM AUTO_INCREMENT=46 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Subcategory`
--
LOCK TABLES `Subcategory` WRITE;
/*!40000 ALTER TABLE `Subcategory` DISABLE KEYS */;
INSERT INTO `Subcategory` VALUES (1,'-',3),(25,'Laryngoscope',3),(3,'Endotracheal Tubes',3),(4,'Nasopharyngeal Airways',3),(5,'Oropharyngeal Airways',3),(6,'IV Caths',3),(7,'Pulse Oximetry',3),(8,'Zoll',2),(9,'Glucometer',3),(10,'Thermoscan',3),(11,'BoardSplints',3),(12,'Frac-Pac Splints',3),(13,'Spare BVMs',3),(14,'Gloves',2),(15,'TB Masks',3),(16,'HP',2),(17,'CO2 Monitoring',3),(18,'Philips',3),(19,'Pacing',3),(20,'Electric',3),(21,'Lights',4),(22,'Tires',2),(23,'Mech_Fluid',3),(24,'Oxygen Management',3),(2,'Personnel',2),(26,'Mech_Comment',1),(27,'Closet',3),(28,'Printer',2),(29,'Cooler',3),(30,'Stair Chair',3),(31,'Cot',2),(32,'--',2),(33,'Syringes',2),(34,'Water Safety',2),(35,'AED',2),(36,'Spare',2),(37,'Portable Suction',2),(38,'Fixed Suction',2),(39,'Dressing',3),(40,'IV',2),(41,'MFC 8220',3),(42,'MFC 7840W',3),(43,'Sager Splints',2),(44,'Garbonus',2),(45,'Mapping',3);
/*!40000 ALTER TABLE `Subcategory` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1`
--
DROP TABLE IF EXISTS `Truck1`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
`hm_value_id` int(11) NOT NULL,
`req` tinyint(1) NOT NULL,
`T_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=178 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1`
--
LOCK TABLES `Truck1` WRITE;
/*!40000 ALTER TABLE `Truck1` DISABLE KEYS */;
INSERT INTO `Truck1` VALUES (1,1,3,1,21,1,'2013-08-23 21:33:10'),(2,2,3,1,21,1,'2013-08-23 21:33:10'),(4,3,3,1,23,1,'2012-03-12 16:47:27'),(5,4,3,1,24,1,'2012-03-12 16:47:27'),(6,6,3,1,24,1,'2012-03-12 16:47:27'),(7,7,3,1,24,1,'2012-03-12 16:47:27'),(8,175,3,1,2,0,'2012-03-12 16:47:27'),(9,176,3,1,2,0,'2012-03-12 16:47:27'),(10,177,3,1,3,0,'2012-03-12 16:47:27'),(11,178,3,1,20,0,'2012-03-12 16:47:27'),(12,179,3,1,20,0,'2012-03-12 16:47:27'),(13,180,3,1,20,0,'2012-03-12 16:47:27'),(14,8,3,2,22,1,'2012-03-12 16:47:27'),(15,9,3,2,22,1,'2012-03-12 16:47:27'),(16,495,3,2,16,0,'2012-03-12 16:47:27'),(17,104,3,20,20,0,'2012-03-12 16:47:27'),(18,105,3,20,20,0,'2012-03-12 16:47:27'),(19,106,3,20,20,0,'2012-03-12 16:47:27'),(20,107,3,20,20,0,'2012-03-12 16:47:27'),(21,108,3,20,20,0,'2012-03-12 16:47:27'),(22,109,3,20,20,0,'2012-03-12 16:47:27'),(23,130,3,21,20,0,'2012-03-12 16:47:27'),(24,131,3,21,20,0,'2012-03-12 16:47:27'),(25,132,3,21,20,0,'2012-03-12 16:47:27'),(26,133,3,21,20,0,'2012-03-12 16:47:27'),(27,134,3,21,20,0,'2012-03-12 16:47:27'),(28,135,3,21,20,0,'2012-03-12 16:47:27'),(29,136,3,21,20,0,'2012-03-12 16:47:27'),(30,137,3,21,20,0,'2012-03-12 16:47:27'),(31,138,3,21,20,0,'2012-03-12 16:47:27'),(32,139,3,21,20,0,'2012-03-12 16:47:27'),(33,140,3,21,20,0,'2012-03-12 16:47:27'),(34,141,3,21,20,0,'2012-03-12 16:47:27'),(35,283,3,22,19,0,'2012-03-12 16:47:27'),(36,284,3,22,16,0,'2012-03-12 16:47:27'),(37,285,3,22,16,0,'2012-03-12 16:47:27'),(38,286,3,22,16,0,'2012-03-12 16:47:27'),(39,287,3,22,16,0,'2012-03-12 16:47:27'),(40,288,3,22,16,0,'2012-03-12 16:47:27'),(41,289,3,22,16,0,'2012-03-12 16:47:27'),(42,331,3,23,20,0,'2012-03-12 16:47:27'),(43,332,3,23,20,0,'2012-03-12 16:47:27'),(44,333,3,23,20,0,'2012-03-12 16:47:27'),(45,334,3,23,20,0,'2012-03-12 16:47:27'),(46,335,3,23,20,0,'2012-03-12 16:47:27'),(47,336,3,23,20,0,'2012-03-12 16:47:27'),(48,337,3,23,20,0,'2012-03-12 16:47:27'),(50,391,4,1,10,0,'2012-03-18 00:42:48'),(51,488,4,1,2,0,'2012-03-18 00:43:30'),(54,390,4,1,10,0,'2012-03-18 00:45:59'),(53,392,4,1,2,0,'2012-03-18 00:45:08'),(55,379,4,1,20,0,'2012-03-18 00:46:52'),(56,548,36,1,20,0,'2012-03-18 00:58:09'),(57,401,36,1,2,0,'2012-03-18 00:58:59'),(58,402,36,1,3,0,'2012-03-18 00:59:43'),(68,403,36,7,20,0,'2012-03-18 01:07:49'),(65,549,36,1,20,0,'2012-03-18 01:04:52'),(61,405,36,1,20,0,'2012-03-18 01:01:33'),(62,406,36,1,20,0,'2012-03-18 01:02:06'),(63,407,36,1,20,0,'2012-03-18 01:02:39'),(64,410,36,1,20,0,'2012-03-18 01:04:18'),(70,409,36,17,2,0,'2012-03-18 01:10:27'),(69,404,36,7,20,0,'2012-03-18 01:08:29'),(71,411,36,19,2,0,'2012-03-18 01:11:56'),(72,412,36,19,2,0,'2012-03-18 01:13:07'),(73,536,36,32,20,0,'2012-03-18 01:14:57'),(74,537,36,32,20,0,'2012-03-18 01:15:38'),(75,521,36,32,20,0,'2012-03-18 01:16:50'),(76,551,36,17,2,0,'2012-03-18 01:19:59'),(77,550,36,32,20,0,'2012-03-18 01:19:59'),(78,553,36,44,20,0,'2012-03-18 01:27:20'),(79,552,36,44,20,0,'2012-03-18 01:28:26'),(80,248,10,1,4,0,'2012-04-04 17:56:19'),(81,249,10,1,4,0,'2012-04-04 17:57:04'),(82,250,10,1,20,0,'2012-04-04 17:58:05'),(83,251,10,1,20,0,'2012-04-04 17:58:44'),(84,254,10,1,2,0,'2012-04-04 17:59:36'),(85,255,10,1,20,0,'2012-04-04 18:00:34'),(86,256,10,1,20,0,'2012-04-04 18:01:30'),(87,257,10,1,2,0,'2012-04-04 18:02:19'),(88,239,10,1,4,0,'2012-04-04 18:03:36'),(89,429,10,1,2,0,'2012-04-04 18:04:13'),(90,258,10,15,2,0,'2012-04-04 18:05:49'),(91,259,10,15,2,0,'2012-04-04 18:06:13'),(92,241,10,14,2,0,'2012-04-04 18:07:59'),(93,243,10,14,2,0,'2012-04-04 18:08:51'),(94,245,10,14,2,0,'2012-04-04 18:09:42'),(95,247,10,14,2,0,'2012-04-04 18:10:14'),(96,253,10,34,20,0,'2012-04-04 18:12:11'),(97,252,10,34,2,0,'2012-04-04 18:13:00'),(98,142,6,1,6,0,'2012-04-04 18:17:43'),(99,143,6,1,2,0,'2012-04-04 18:18:09'),(100,144,6,1,20,0,'2012-04-04 18:18:41'),(101,145,6,1,20,0,'2012-04-04 18:19:09'),(104,147,6,1,20,0,'2012-04-04 18:21:13'),(103,146,6,1,20,0,'2012-04-04 18:20:43'),(105,148,6,1,20,0,'2012-04-04 18:21:42'),(106,149,6,1,20,0,'2012-04-04 18:22:18'),(107,156,6,1,20,0,'2012-04-04 18:23:17'),(108,150,6,1,8,0,'2012-04-04 18:24:00'),(109,152,6,1,2,0,'2012-04-04 18:24:34'),(110,151,6,1,4,0,'2012-04-04 18:25:04'),(111,153,6,1,20,0,'2012-04-04 18:26:03'),(112,157,6,1,20,0,'2012-04-04 18:26:35'),(113,158,6,1,20,0,'2012-04-04 18:27:16'),(114,165,6,10,20,0,'2012-04-04 18:28:01'),(115,166,6,10,20,0,'2012-04-04 18:28:33'),(116,424,6,31,20,0,'2012-04-04 18:30:31'),(117,425,6,31,2,0,'2012-04-04 18:31:13'),(118,426,6,31,20,0,'2012-04-04 18:32:56'),(119,427,6,31,20,0,'2012-04-04 18:33:32'),(120,167,6,30,20,0,'2012-04-04 18:34:35'),(121,423,6,30,2,0,'2012-04-04 18:35:01'),(122,555,3,45,20,0,'2012-04-04 18:45:57'),(123,554,3,45,20,0,'2012-04-04 18:48:26'),(124,557,3,45,20,0,'2012-04-04 18:49:15'),(125,556,3,45,20,0,'2012-04-04 18:50:00'),(126,194,8,1,17,1,'2012-04-04 18:53:44'),(127,195,8,1,17,1,'2012-04-04 18:54:16'),(128,196,8,1,17,1,'2012-04-04 18:55:38'),(129,198,8,1,17,1,'2012-04-04 18:56:17'),(130,200,8,1,20,0,'2012-04-04 18:56:55'),(175,197,8,1,26,0,'2012-06-28 09:42:30'),(132,199,8,1,2,0,'2012-04-04 18:58:29'),(134,205,8,24,10,0,'2012-04-04 19:01:03'),(135,204,8,24,10,0,'2012-04-04 19:01:36'),(136,206,8,24,4,0,'2012-04-04 19:02:28'),(137,207,8,24,5,0,'2012-04-04 19:03:06'),(138,208,8,24,5,0,'2012-04-04 19:03:42'),(139,209,8,24,4,0,'2012-04-04 19:04:15'),(140,210,8,24,4,0,'2012-04-04 19:04:50'),(141,211,8,24,4,0,'2012-04-04 19:05:19'),(142,201,8,13,20,0,'2012-04-04 19:06:22'),(143,202,8,13,20,0,'2012-04-04 19:06:52'),(144,203,8,13,20,0,'2012-04-04 19:07:33'),(145,96,5,1,6,0,'2012-04-04 19:10:52'),(148,98,5,1,10,0,'2012-04-04 19:12:44'),(149,99,5,1,10,0,'2012-04-04 19:13:16'),(150,101,5,1,10,0,'2012-04-04 19:13:44'),(151,115,5,1,2,0,'2012-04-04 19:14:06'),(152,116,5,1,2,0,'2012-04-04 19:14:40'),(153,117,5,1,2,0,'2012-04-04 19:15:20'),(154,118,5,1,20,0,'2012-04-04 19:15:47'),(155,102,5,1,20,0,'2012-04-04 19:16:16'),(156,41,5,1,10,0,'2012-04-04 19:16:47'),(157,127,5,1,10,0,'2012-04-04 19:17:09'),(158,471,5,1,10,0,'2012-04-04 19:17:34'),(159,84,5,1,10,0,'2012-04-04 19:18:17'),(160,535,5,1,5,0,'2012-04-04 19:18:58'),(161,528,5,1,10,0,'2012-04-04 19:19:34'),(162,44,5,6,10,0,'2012-04-04 19:20:23'),(163,45,5,6,10,0,'2012-04-04 19:20:46'),(164,46,5,6,10,0,'2012-04-04 19:21:12'),(165,47,5,6,10,0,'2012-04-04 19:21:35'),(166,48,5,6,10,0,'2012-04-04 19:21:56'),(167,49,5,6,10,0,'2012-04-04 19:22:17'),(168,159,6,9,20,0,'2012-04-04 19:27:09'),(169,160,6,9,20,0,'2012-04-04 19:27:54'),(170,91,6,9,20,0,'2012-04-04 19:28:36'),(171,85,6,9,4,0,'2012-04-04 19:29:33'),(172,86,6,9,4,0,'2012-04-04 19:30:19'),(173,164,6,9,3,0,'2012-04-04 19:31:24'),(174,544,6,9,20,0,'2012-04-04 19:32:14'),(176,529,5,1,10,0,'2012-07-25 19:32:58'),(3,561,3,1,27,0,'2013-08-23 21:34:09'),(177,514,16,1,25,0,'2013-08-25 18:38:59');
/*!40000 ALTER TABLE `Truck1` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_Airway_Box`
--
DROP TABLE IF EXISTS `Truck1_Airway_Box`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_Airway_Box` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
`hm_value_id` int(11) NOT NULL,
`req` tinyint(1) NOT NULL,
`T_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=65 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_Airway_Box`
--
LOCK TABLES `Truck1_Airway_Box` WRITE;
/*!40000 ALTER TABLE `Truck1_Airway_Box` DISABLE KEYS */;
INSERT INTO `Truck1_Airway_Box` VALUES (1,11,27,1,20,0,'2012-03-12 16:47:27'),(2,50,27,1,20,0,'2012-03-12 16:47:27'),(3,51,27,1,5,0,'2012-03-12 16:47:27'),(64,484,27,1,4,0,'2012-04-22 16:07:20'),(59,41,27,1,4,0,'2012-04-22 16:02:13'),(7,42,27,1,2,0,'2012-03-12 16:47:27'),(47,428,27,1,20,0,'2012-03-12 16:47:27'),(10,27,27,1,20,0,'2012-03-12 16:47:27'),(11,10,27,1,20,0,'2012-03-12 16:47:27'),(46,28,27,1,20,0,'2012-03-12 16:47:27'),(28,29,27,4,20,0,'2012-03-12 16:47:27'),(29,30,27,4,20,0,'2012-03-12 16:47:27'),(30,31,27,4,20,0,'2012-03-12 16:47:27'),(31,32,27,4,20,0,'2012-03-12 16:47:27'),(32,33,27,4,20,0,'2012-03-12 16:47:27'),(33,34,27,5,20,0,'2012-03-12 16:47:27'),(34,35,27,5,20,0,'2012-03-12 16:47:27'),(35,36,27,5,20,0,'2012-03-12 16:47:27'),(36,37,27,5,20,0,'2012-03-12 16:47:27'),(37,38,27,5,20,0,'2012-03-12 16:47:27'),(38,44,27,6,2,0,'2012-03-12 16:47:27'),(39,45,27,6,2,0,'2012-03-12 16:47:27'),(40,46,27,6,2,0,'2012-03-12 16:47:27'),(41,47,27,6,2,0,'2012-03-12 16:47:27'),(42,48,27,6,2,0,'2012-03-12 16:47:27'),(43,49,27,6,2,0,'2012-03-12 16:47:27'),(48,26,27,1,2,0,'2012-03-12 16:47:27'),(49,62,27,32,2,0,'2012-04-22 15:48:16'),(50,101,27,1,2,0,'2012-04-22 15:51:02'),(51,52,27,32,7,0,'2012-04-22 15:51:02'),(53,53,27,32,3,0,'2012-04-22 15:53:15'),(54,96,27,1,20,0,'2012-04-22 15:56:07'),(55,55,27,32,4,0,'2012-04-22 15:56:07'),(56,98,27,1,20,0,'2012-04-22 15:58:16'),(57,74,27,32,2,0,'2012-04-22 15:58:16'),(58,92,27,32,20,0,'2012-04-22 15:59:53'),(60,93,27,32,2,0,'2012-04-22 16:02:13'),(61,64,27,32,20,0,'2012-04-22 16:03:32'),(62,72,27,32,20,0,'2012-04-22 16:05:46'),(63,69,27,32,20,0,'2012-04-22 16:06:56');
/*!40000 ALTER TABLE `Truck1_Airway_Box` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_Airway_Box_checksheet`
--
DROP TABLE IF EXISTS `Truck1_Airway_Box_checksheet`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_Airway_Box_checksheet` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`event_id` int(11) DEFAULT NULL,
`item_id` int(11) DEFAULT NULL,
`result` varchar(11) DEFAULT NULL,
`hm_value_id` varchar(11) DEFAULT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=41 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_Airway_Box_checksheet`
--
LOCK TABLES `Truck1_Airway_Box_checksheet` WRITE;
/*!40000 ALTER TABLE `Truck1_Airway_Box_checksheet` DISABLE KEYS */;
INSERT INTO `Truck1_Airway_Box_checksheet` VALUES (1,1,11,'1','cb',27,1),(2,1,50,'1','cb',27,1),(3,1,51,'5','5',27,1),(4,1,484,'4','4',27,1),(5,1,41,'4','4',27,1),(6,1,42,'2','2',27,1),(7,1,428,'1','cb',27,1),(8,1,27,'1','cb',27,1),(9,1,10,'1','cb',27,1),(10,1,28,'1','cb',27,1),(11,1,26,'2','2',27,1),(12,1,101,'2','2',27,1),(13,1,96,'1','cb',27,1),(14,1,98,'1','cb',27,1),(15,1,29,'1','cb',27,4),(16,1,30,'1','cb',27,4),(17,1,31,'1','cb',27,4),(18,1,32,'1','cb',27,4),(19,1,33,'1','cb',27,4),(20,1,34,'1','cb',27,5),(21,1,35,'1','cb',27,5),(22,1,36,'1','cb',27,5),(23,1,37,'1','cb',27,5),(24,1,38,'1','cb',27,5),(25,1,44,'2','2',27,6),(26,1,45,'2','2',27,6),(27,1,46,'2','2',27,6),(28,1,47,'2','2',27,6),(29,1,48,'2','2',27,6),(30,1,49,'2','2',27,6),(31,1,62,'2','2',27,32),(32,1,52,'7','7',27,32),(33,1,53,'3','3',27,32),(34,1,55,'4','4',27,32),(35,1,74,'2','2',27,32),(36,1,92,'1','cb',27,32),(37,1,93,'2','2',27,32),(38,1,64,'1','cb',27,32),(39,1,72,'1','cb',27,32),(40,1,69,'1','cb',27,32);
/*!40000 ALTER TABLE `Truck1_Airway_Box_checksheet` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_Airway_Box_events`
--
DROP TABLE IF EXISTS `Truck1_Airway_Box_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_Airway_Box_events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`submitted` tinyint(4) DEFAULT NULL,
`merged` int(11) DEFAULT NULL,
`merger` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_Airway_Box_events`
--
LOCK TABLES `Truck1_Airway_Box_events` WRITE;
/*!40000 ALTER TABLE `Truck1_Airway_Box_events` DISABLE KEYS */;
INSERT INTO `Truck1_Airway_Box_events` VALUES (1,'2014-03-18 18:41:09',NULL,1,1);
/*!40000 ALTER TABLE `Truck1_Airway_Box_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_Controlled_Medications`
--
DROP TABLE IF EXISTS `Truck1_Controlled_Medications`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_Controlled_Medications` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
`hm_value_id` int(11) NOT NULL,
`req` tinyint(1) NOT NULL,
`T_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_Controlled_Medications`
--
LOCK TABLES `Truck1_Controlled_Medications` WRITE;
/*!40000 ALTER TABLE `Truck1_Controlled_Medications` DISABLE KEYS */;
INSERT INTO `Truck1_Controlled_Medications` VALUES (1,260,11,1,26,1,'2012-03-12 16:47:21'),(2,262,11,1,26,1,'2012-03-12 16:47:21'),(3,263,11,1,26,1,'2012-03-12 16:47:21'),(4,420,11,1,26,1,'2012-03-12 16:47:21'),(5,103,11,1,20,0,'2012-03-12 16:47:21'),(6,265,11,29,26,1,'2012-03-12 16:47:21'),(7,266,11,29,26,1,'2012-03-12 16:47:21'),(8,261,11,29,26,1,'2012-03-12 16:47:21');
/*!40000 ALTER TABLE `Truck1_Controlled_Medications` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_Controlled_Medications_checksheet`
--
DROP TABLE IF EXISTS `Truck1_Controlled_Medications_checksheet`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_Controlled_Medications_checksheet` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`event_id` int(11) DEFAULT NULL,
`item_id` int(11) DEFAULT NULL,
`result` varchar(11) DEFAULT NULL,
`hm_value_id` varchar(11) DEFAULT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_Controlled_Medications_checksheet`
--
LOCK TABLES `Truck1_Controlled_Medications_checksheet` WRITE;
/*!40000 ALTER TABLE `Truck1_Controlled_Medications_checksheet` DISABLE KEYS */;
INSERT INTO `Truck1_Controlled_Medications_checksheet` VALUES (1,1,260,'2','na',11,1),(2,1,262,'2','na',11,1),(3,1,263,'2','na',11,1),(4,1,420,'2','na',11,1),(5,1,103,'1','cb',11,1),(6,1,265,'2','na',11,29),(7,1,266,'2','na',11,29),(8,1,261,'2','na',11,29);
/*!40000 ALTER TABLE `Truck1_Controlled_Medications_checksheet` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_Controlled_Medications_events`
--
DROP TABLE IF EXISTS `Truck1_Controlled_Medications_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_Controlled_Medications_events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`submitted` tinyint(4) DEFAULT NULL,
`merged` int(11) DEFAULT NULL,
`merger` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_Controlled_Medications_events`
--
LOCK TABLES `Truck1_Controlled_Medications_events` WRITE;
/*!40000 ALTER TABLE `Truck1_Controlled_Medications_events` DISABLE KEYS */;
INSERT INTO `Truck1_Controlled_Medications_events` VALUES (1,'2014-03-18 18:41:09',NULL,1,1);
/*!40000 ALTER TABLE `Truck1_Controlled_Medications_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_Drug_Box`
--
DROP TABLE IF EXISTS `Truck1_Drug_Box`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_Drug_Box` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
`hm_value_id` int(11) NOT NULL,
`req` tinyint(1) NOT NULL,
`T_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=70 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_Drug_Box`
--
LOCK TABLES `Truck1_Drug_Box` WRITE;
/*!40000 ALTER TABLE `Truck1_Drug_Box` DISABLE KEYS */;
INSERT INTO `Truck1_Drug_Box` VALUES (1,52,28,1,10,0,'2012-03-12 16:47:27'),(2,53,28,1,4,0,'2012-03-12 16:47:27'),(3,54,28,1,2,0,'2012-03-12 16:47:27'),(4,55,28,1,4,0,'2012-03-12 16:47:27'),(5,56,28,1,20,0,'2012-03-12 16:47:27'),(6,57,28,1,20,0,'2012-03-12 16:47:27'),(7,58,28,1,20,0,'2012-03-12 16:47:27'),(69,92,28,1,1,0,'2012-04-22 15:34:50'),(9,93,28,1,2,0,'2012-03-12 16:47:27'),(10,94,28,1,20,0,'2012-03-12 16:47:27'),(11,95,28,1,20,0,'2012-03-12 16:47:27'),(12,97,28,1,20,0,'2012-03-12 16:47:27'),(14,60,28,1,6,0,'2012-03-12 16:47:27'),(15,61,28,1,4,0,'2012-03-12 16:47:27'),(16,62,28,1,2,0,'2012-03-12 16:47:27'),(17,63,28,1,2,0,'2012-03-12 16:47:27'),(19,66,28,1,5,0,'2012-03-12 16:47:27'),(20,67,28,1,1,0,'2012-03-12 16:47:27'),(21,68,28,1,2,0,'2012-03-12 16:47:27'),(22,69,28,1,20,0,'2012-03-12 16:47:27'),(25,72,28,1,20,0,'2012-03-12 16:47:27'),(26,73,28,1,1,0,'2012-03-12 16:47:27'),(67,74,28,1,6,0,'2012-04-22 15:34:06'),(66,101,28,32,2,0,'2012-04-22 15:32:42'),(37,44,28,6,2,0,'2012-03-12 16:47:27'),(38,45,28,6,2,0,'2012-03-12 16:47:27'),(39,46,28,6,2,0,'2012-03-12 16:47:27'),(40,47,28,6,2,0,'2012-03-12 16:47:27'),(41,48,28,6,2,0,'2012-03-12 16:47:27'),(42,49,28,6,2,0,'2012-03-12 16:47:27'),(43,81,28,33,2,0,'2012-03-12 16:47:27'),(44,82,28,33,2,0,'2012-03-12 16:47:27'),(45,41,28,33,2,0,'2012-03-12 16:47:27'),(46,84,28,33,5,0,'2012-03-12 16:47:27'),(47,103,28,33,20,0,'2012-03-12 16:47:27'),(48,65,28,33,2,0,'2012-03-12 16:47:27'),(49,85,28,32,10,0,'2012-03-12 16:47:27'),(50,86,28,32,10,0,'2012-03-12 16:47:27'),(51,87,28,32,2,0,'2012-03-12 16:47:27'),(52,88,28,32,2,0,'2012-03-12 16:47:27'),(53,89,28,32,2,0,'2012-03-12 16:47:27'),(54,90,28,32,2,0,'2012-03-12 16:47:27'),(55,91,28,32,10,0,'2012-03-12 16:47:27'),(56,96,28,32,20,0,'2012-03-12 16:47:27'),(57,98,28,32,20,0,'2012-03-12 16:47:27'),(58,99,28,32,20,0,'2012-03-12 16:47:27'),(65,64,28,1,2,0,'2012-04-22 15:32:42'),(60,102,28,32,1,0,'2012-03-12 16:47:27'),(61,59,28,32,20,0,'2012-03-12 16:47:27'),(63,508,28,1,2,0,'2012-03-12 16:47:27');
/*!40000 ALTER TABLE `Truck1_Drug_Box` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_Drug_Box_checksheet`
--
DROP TABLE IF EXISTS `Truck1_Drug_Box_checksheet`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_Drug_Box_checksheet` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`event_id` int(11) DEFAULT NULL,
`item_id` int(11) DEFAULT NULL,
`result` varchar(11) DEFAULT NULL,
`hm_value_id` varchar(11) DEFAULT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=51 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_Drug_Box_checksheet`
--
LOCK TABLES `Truck1_Drug_Box_checksheet` WRITE;
/*!40000 ALTER TABLE `Truck1_Drug_Box_checksheet` DISABLE KEYS */;
INSERT INTO `Truck1_Drug_Box_checksheet` VALUES (1,1,52,'10','10',28,1),(2,1,53,'4','4',28,1),(3,1,54,'2','2',28,1),(4,1,55,'4','4',28,1),(5,1,56,'1','cb',28,1),(6,1,57,'1','cb',28,1),(7,1,58,'1','cb',28,1),(8,1,92,'1','1',28,1),(9,1,93,'2','2',28,1),(10,1,94,'1','cb',28,1),(11,1,95,'1','cb',28,1),(12,1,97,'1','cb',28,1),(13,1,60,'6','6',28,1),(14,1,61,'4','4',28,1),(15,1,62,'2','2',28,1),(16,1,63,'2','2',28,1),(17,1,66,'5','5',28,1),(18,1,67,'1','1',28,1),(19,1,68,'2','2',28,1),(20,1,69,'1','cb',28,1),(21,1,72,'1','cb',28,1),(22,1,73,'1','1',28,1),(23,1,74,'6','6',28,1),(24,1,64,'2','2',28,1),(25,1,508,'2','2',28,1),(26,1,101,'2','2',28,32),(27,1,85,'10','10',28,32),(28,1,86,'10','10',28,32),(29,1,87,'2','2',28,32),(30,1,88,'2','2',28,32),(31,1,89,'2','2',28,32),(32,1,90,'2','2',28,32),(33,1,91,'10','10',28,32),(34,1,96,'1','cb',28,32),(35,1,98,'1','cb',28,32),(36,1,99,'1','cb',28,32),(37,1,102,'1','1',28,32),(38,1,59,'1','cb',28,32),(39,1,44,'2','2',28,6),(40,1,45,'2','2',28,6),(41,1,46,'2','2',28,6),(42,1,47,'2','2',28,6),(43,1,48,'2','2',28,6),(44,1,49,'2','2',28,6),(45,1,81,'2','2',28,33),(46,1,82,'2','2',28,33),(47,1,41,'2','2',28,33),(48,1,84,'5','5',28,33),(49,1,103,'1','cb',28,33),(50,1,65,'2','2',28,33);
/*!40000 ALTER TABLE `Truck1_Drug_Box_checksheet` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_Drug_Box_events`
--
DROP TABLE IF EXISTS `Truck1_Drug_Box_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_Drug_Box_events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`submitted` tinyint(4) DEFAULT NULL,
`merged` int(11) DEFAULT NULL,
`merger` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_Drug_Box_events`
--
LOCK TABLES `Truck1_Drug_Box_events` WRITE;
/*!40000 ALTER TABLE `Truck1_Drug_Box_events` DISABLE KEYS */;
INSERT INTO `Truck1_Drug_Box_events` VALUES (1,'2014-03-18 18:41:09',NULL,1,1);
/*!40000 ALTER TABLE `Truck1_Drug_Box_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_ETT_Pack`
--
DROP TABLE IF EXISTS `Truck1_ETT_Pack`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_ETT_Pack` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
`hm_value_id` int(11) NOT NULL,
`req` tinyint(1) NOT NULL,
`T_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_ETT_Pack`
--
LOCK TABLES `Truck1_ETT_Pack` WRITE;
/*!40000 ALTER TABLE `Truck1_ETT_Pack` DISABLE KEYS */;
INSERT INTO `Truck1_ETT_Pack` VALUES (1,39,38,1,20,0,'2012-03-12 16:47:21'),(2,484,38,1,6,0,'2012-03-12 16:47:21'),(7,42,38,1,20,0,'2012-03-12 16:47:21'),(5,43,38,1,20,0,'2012-03-12 16:47:21'),(6,12,38,1,20,0,'2012-03-12 16:47:21'),(8,13,38,25,20,0,'2012-03-12 16:47:21'),(9,14,38,25,20,0,'2012-03-12 16:47:21'),(10,16,38,25,20,0,'2012-03-12 16:47:21'),(11,15,38,25,20,0,'2012-03-12 16:47:21'),(12,17,38,25,20,0,'2012-03-12 16:47:21'),(13,18,38,3,2,0,'2012-03-12 16:47:21'),(14,19,38,3,2,0,'2012-03-12 16:47:21'),(15,20,38,3,2,0,'2012-03-12 16:47:21'),(16,21,38,3,2,0,'2012-03-12 16:47:21'),(17,23,38,3,2,0,'2012-03-12 16:47:21'),(18,24,38,3,2,0,'2012-03-12 16:47:21'),(19,25,38,3,2,0,'2012-03-12 16:47:21'),(20,558,38,1,2,0,'2012-07-25 19:14:48'),(21,22,38,3,2,0,'2012-07-25 19:14:48');
/*!40000 ALTER TABLE `Truck1_ETT_Pack` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_ETT_Pack_checksheet`
--
DROP TABLE IF EXISTS `Truck1_ETT_Pack_checksheet`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_ETT_Pack_checksheet` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`event_id` int(11) DEFAULT NULL,
`item_id` int(11) DEFAULT NULL,
`result` varchar(11) DEFAULT NULL,
`hm_value_id` varchar(11) DEFAULT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_ETT_Pack_checksheet`
--
LOCK TABLES `Truck1_ETT_Pack_checksheet` WRITE;
/*!40000 ALTER TABLE `Truck1_ETT_Pack_checksheet` DISABLE KEYS */;
INSERT INTO `Truck1_ETT_Pack_checksheet` VALUES (1,1,39,'1','cb',38,1),(2,1,484,'6','6',38,1),(3,1,42,'1','cb',38,1),(4,1,43,'1','cb',38,1),(5,1,12,'1','cb',38,1),(6,1,558,'2','2',38,1),(7,1,13,'1','cb',38,25),(8,1,14,'1','cb',38,25),(9,1,16,'1','cb',38,25),(10,1,15,'1','cb',38,25),(11,1,17,'1','cb',38,25),(12,1,18,'2','2',38,3),(13,1,19,'2','2',38,3),(14,1,20,'2','2',38,3),(15,1,21,'2','2',38,3),(16,1,23,'2','2',38,3),(17,1,24,'2','2',38,3),(18,1,25,'2','2',38,3),(19,1,22,'2','2',38,3);
/*!40000 ALTER TABLE `Truck1_ETT_Pack_checksheet` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_ETT_Pack_events`
--
DROP TABLE IF EXISTS `Truck1_ETT_Pack_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_ETT_Pack_events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`submitted` tinyint(4) DEFAULT NULL,
`merged` int(11) DEFAULT NULL,
`merger` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_ETT_Pack_events`
--
LOCK TABLES `Truck1_ETT_Pack_events` WRITE;
/*!40000 ALTER TABLE `Truck1_ETT_Pack_events` DISABLE KEYS */;
INSERT INTO `Truck1_ETT_Pack_events` VALUES (1,'2014-03-18 18:41:09',NULL,1,1);
/*!40000 ALTER TABLE `Truck1_ETT_Pack_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_EZ_IO`
--
DROP TABLE IF EXISTS `Truck1_EZ_IO`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_EZ_IO` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
`hm_value_id` int(11) NOT NULL,
`req` tinyint(1) NOT NULL,
`T_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_EZ_IO`
--
LOCK TABLES `Truck1_EZ_IO` WRITE;
/*!40000 ALTER TABLE `Truck1_EZ_IO` DISABLE KEYS */;
INSERT INTO `Truck1_EZ_IO` VALUES (1,509,37,1,20,0,'2012-03-12 16:47:21'),(2,118,37,1,20,0,'2012-03-12 16:47:21'),(3,55,37,1,20,0,'2012-03-12 16:47:21'),(4,41,37,1,20,0,'2012-03-12 16:47:21'),(5,127,37,1,20,0,'2012-03-12 16:47:21'),(6,513,37,1,2,0,'2012-03-12 16:47:21'),(7,510,37,6,2,0,'2012-03-12 16:47:21'),(8,511,37,6,2,0,'2012-03-12 16:47:21'),(9,512,37,6,2,0,'2012-03-12 16:47:21');
/*!40000 ALTER TABLE `Truck1_EZ_IO` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_EZ_IO_checksheet`
--
DROP TABLE IF EXISTS `Truck1_EZ_IO_checksheet`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_EZ_IO_checksheet` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`event_id` int(11) DEFAULT NULL,
`item_id` int(11) DEFAULT NULL,
`result` varchar(11) DEFAULT NULL,
`hm_value_id` varchar(11) DEFAULT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_EZ_IO_checksheet`
--
LOCK TABLES `Truck1_EZ_IO_checksheet` WRITE;
/*!40000 ALTER TABLE `Truck1_EZ_IO_checksheet` DISABLE KEYS */;
INSERT INTO `Truck1_EZ_IO_checksheet` VALUES (1,1,509,'1','cb',37,1),(2,1,118,'1','cb',37,1),(3,1,55,'1','cb',37,1),(4,1,41,'1','cb',37,1),(5,1,127,'1','cb',37,1),(6,1,513,'2','2',37,1),(7,1,510,'2','2',37,6),(8,1,511,'2','2',37,6),(9,1,512,'2','2',37,6);
/*!40000 ALTER TABLE `Truck1_EZ_IO_checksheet` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_EZ_IO_events`
--
DROP TABLE IF EXISTS `Truck1_EZ_IO_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_EZ_IO_events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`submitted` tinyint(4) DEFAULT NULL,
`merged` int(11) DEFAULT NULL,
`merger` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_EZ_IO_events`
--
LOCK TABLES `Truck1_EZ_IO_events` WRITE;
/*!40000 ALTER TABLE `Truck1_EZ_IO_events` DISABLE KEYS */;
INSERT INTO `Truck1_EZ_IO_events` VALUES (1,'2014-03-18 18:41:09',NULL,1,1);
/*!40000 ALTER TABLE `Truck1_EZ_IO_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_OB`
--
DROP TABLE IF EXISTS `Truck1_OB`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_OB` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
`hm_value_id` int(11) NOT NULL,
`req` tinyint(1) NOT NULL,
`T_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_OB`
--
LOCK TABLES `Truck1_OB` WRITE;
/*!40000 ALTER TABLE `Truck1_OB` DISABLE KEYS */;
INSERT INTO `Truck1_OB` VALUES (6,481,35,1,2,0,'2012-03-12 16:47:21'),(2,155,35,1,2,0,'2012-03-12 16:47:21'),(3,477,35,1,20,0,'2012-03-12 16:47:21'),(4,478,35,1,2,0,'2012-03-12 16:47:21'),(5,474,35,1,2,0,'2012-03-12 16:47:21'),(7,475,35,1,2,0,'2012-03-12 16:47:21'),(8,154,35,1,2,0,'2012-03-12 16:47:21');
/*!40000 ALTER TABLE `Truck1_OB` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_OB_checksheet`
--
DROP TABLE IF EXISTS `Truck1_OB_checksheet`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_OB_checksheet` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`event_id` int(11) DEFAULT NULL,
`item_id` int(11) DEFAULT NULL,
`result` varchar(11) DEFAULT NULL,
`hm_value_id` varchar(11) DEFAULT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_OB_checksheet`
--
LOCK TABLES `Truck1_OB_checksheet` WRITE;
/*!40000 ALTER TABLE `Truck1_OB_checksheet` DISABLE KEYS */;
INSERT INTO `Truck1_OB_checksheet` VALUES (1,1,481,'2','2',35,1),(2,1,155,'2','2',35,1),(3,1,477,'1','cb',35,1),(4,1,478,'2','2',35,1),(5,1,474,'2','2',35,1),(6,1,475,'2','2',35,1),(7,1,154,'2','2',35,1);
/*!40000 ALTER TABLE `Truck1_OB_checksheet` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_OB_events`
--
DROP TABLE IF EXISTS `Truck1_OB_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_OB_events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`submitted` tinyint(4) DEFAULT NULL,
`merged` int(11) DEFAULT NULL,
`merger` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Truck1_OB_events`
--
LOCK TABLES `Truck1_OB_events` WRITE;
/*!40000 ALTER TABLE `Truck1_OB_events` DISABLE KEYS */;
INSERT INTO `Truck1_OB_events` VALUES (1,'2014-03-18 18:41:09',NULL,1,1);
/*!40000 ALTER TABLE `Truck1_OB_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Truck1_Pedi_Box`
--
DROP TABLE IF EXISTS `Truck1_Pedi_Box`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Truck1_Pedi_Box` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) NOT NULL,
`hm_value_id` int(11) NOT NULL,
`req` tinyint(1) NOT NULL,
`T_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=41 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;