This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- MySQL | |
-- Ramos de atividade para popular banco de dados mysql | |
CREATE TABLE `segment` ( | |
`id` int NOT NULL AUTO_INCREMENT, | |
`description` varchar(145) NOT NULL, | |
`active` bit(1) NOT NULL DEFAULT b'1', | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB AUTO_INCREMENT=124 DEFAULT CHARSET=utf8; |