-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
94e1b8d
commit 409ed59
Showing
2 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
### Seja bem vindo a um simples exemplo de um blog usando o framework kohana | ||
|
||
Aqui estarei apenas estarei desenvolvendo um pequeno exemplo simples de um blog. | ||
Aqui estarei apenas desenvolvendo um simples exemplo de um blog usando o framework kohana, apenas para apresentação. | ||
|
||
Alguns esclarecimentos: | ||
* Não me preocuparei muito com a parte visual, estarei focado apenas no back-end. | ||
* O módulo "pagination" não vem nessa versão do kohana(?), utilizo o módulo só que de uma versão anterior que foi customizada, e que customizei tambem. | ||
* Sql do banco está no root do repositório. | ||
|
||
|
||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
|
||
-- POSTS | ||
CREATE TABLE IF NOT EXISTS `posts`( | ||
`id` INT(8) NOT NULL AUTO_INCREMENT, | ||
`nome` VARCHAR(30) NOT NULL, | ||
`texto` TEXT NOT NULL, | ||
`user_admin` VARCHAR(50), | ||
`data_registro` DATETIME, | ||
PRIMARY KEY(`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
|
||
|
||
|
||
|