-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from SBD1/git-pages
Git pages
- Loading branch information
Showing
13 changed files
with
605 additions
and
7 deletions.
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
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,7 @@ | ||
# Apresentação do Módulo 2 | ||
|
||
## <a>Introdução</a> | ||
|
||
O propósito desta página é hospedar o vídeo da apresentação da Entrega do Módulo 2. Caso não seja viável assistir ao vídeo diretamente nesta página, por favor, clique no link fornecido para acessá-lo. | ||
|
||
## <a>Vídeo da apresentação</a> |
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
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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,16 @@ | ||
??? "Tabela: PERSONAGEM" | ||
#### PERSONAGEM | ||
|
||
```sql | ||
CREATE TABLE PERSONAGEM ( | ||
id_personagem INT PRIMARY KEY, -- NOT NULL é implícito aqui | ||
quantidade_moedas INT NOT NULL, | ||
nome_alien VARCHAR(30) NOT NULL, | ||
nome VARCHAR(30) NOT NULL, | ||
id_sala INT, | ||
saude INT NOT NULL, | ||
nivel INT NOT NULL, | ||
FOREIGN KEY (id_sala) REFERENCES SALA(id_sala) | ||
); | ||
``` | ||
|
Oops, something went wrong.