9 lines
250 B
MySQL
9 lines
250 B
MySQL
|
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;
|