This file contains 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
CREATE TABLE IF NOT EXISTS `posts` ( | |
`post_id` int(11) NOT NULL AUTO_INCREMENT, | |
`title` varchar(255) NOT NULL, | |
`content` text NOT NULL, | |
PRIMARY KEY (`post_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; |
This file contains 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
-- | |
-- Banco de Dados: `zf-paginator` | |
-- | |
-- -------------------------------------------------------- | |
-- | |
-- Estrutura da tabela `user` | |
-- |
This file contains 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
-- | |
-- Banco de Dados: `zf-order` | |
-- | |
-- -------------------------------------------------------- | |
-- | |
-- Estrutura da tabela `order` | |
-- |