Step 2Create table.
CREATE TABLE `status` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`door` enum('overhead','side') DEFAULT NULL,
`status` enum('Open','Closed') DEFAULT NULL,
`date` datetime NOT NULL,
PRIMARY KEY (`id`)
)
| « Previous Step | Download PDFView All Steps | Next Step » |
![]() |
Add Comment
|









































