salix/db/versions/.archive/10220-chocolateCymbidium/00-createPersonalProtection...

9 lines
250 B
MySQL
Raw Normal View History

DROP TABLE IF EXISTS `vn`.`personalProtectionEquipment`;
CREATE TABLE `vn`.`personalProtectionEquipment` (
`id` INT(11) Primary Key auto_increment NOT NULL,
`name` varchar(255) NOT NULL
)
ENGINE=InnoDB
DEFAULT CHARSET=utf8
COLLATE=utf8_unicode_ci;