-
Notifications
You must be signed in to change notification settings - Fork 22
db created, more left to fix. #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ezotic
wants to merge
25
commits into
code-differently:main
Choose a base branch
from
ezotic:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
c03cb82
Initial copy from pokedex
ezotic 5ac2f0d
added pokemon.db
ezotic 094d5e3
added schema
ezotic 1ecd6df
update
ezotic ea21449
db removed
ezotic 12023b5
created mysql database and tables
d359d7f
created mysql database and tables
bf28d91
Merge branch 'main' of github.com:ezotic/Pokedex-Full-Stack-App into …
9b27f51
removed sequalize
8401a35
cleanup
8f39835
fixing frontend
a3fc0e3
added script.js
6c92c98
fetch fixed
ezotic d9830d8
tweak index.js
50d2033
express/db connectivity; need to write join query to pull the type da…
46daaf9
Update pokemon.js
ezotic cd5056b
Merge branch 'main' of github.com:ezotic/Pokedex-Full-Stack-App into …
2decba2
cleanup
f7459c5
removed passwd
bdd478b
final commit, removed click
8220277
final commit, body color change
c070b71
minor css changes
c442adb
minor css changes
da8acf9
minor refactoring and cleanup
d651c75
update
ezotic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "liveServer.settings.port": 5501 | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| const mysql = require('mysql'); | ||
|
|
||
| const con = mysql.createConnection({ | ||
| host: "localhost", | ||
| user: "root", | ||
| password: "*****", | ||
| database: "pokedex" | ||
| }); | ||
|
|
||
| con.connect(function(err) { | ||
| if (err) throw err; | ||
| console.log("Connected!"); | ||
| let sql = "CREATE TABLE pokemon(id INT PRIMARY KEY NOT NULL,name VARCHAR(50),img VARCHAR(256))"; | ||
| con.query(sql, function (err, result) { | ||
| if (err) throw err; | ||
| console.log("pokemon table created..."); | ||
| }); | ||
| }), | ||
|
|
||
| con.connect(function(err) { | ||
| if (err) throw err; | ||
| console.log("Connected!"); | ||
| let sql = "CREATE TABLE types(id INT PRIMARY KEY NOT NULL,name VARCHAR(32))"; | ||
| con.query(sql, function (err, result) { | ||
| if (err) throw err; | ||
| console.log("types table created..."); | ||
| }); | ||
| }), | ||
|
|
||
| con.connect(function(err) { | ||
| if (err) throw err; | ||
| console.log("Connected!"); | ||
| let sql = "CREATE TABLE poke_type(id INT PRIMARY KEY AUTO_INCREMENT,pokeId INT NOT NULL,typeId INT NOT NULL,FOREIGN KEY (pokeId) REFERENCES pokemon(id),FOREIGN KEY (typeId) REFERENCES type(id))"; | ||
| con.query(sql, function (err, result) { | ||
| if (err) throw err; | ||
| console.log("mapping table created..."); | ||
| }); | ||
|
|
||
| con.end () | ||
| }); | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| -- CREATE DATABASE pokedex; | ||
| CREATE DATABASE pokedex; | ||
| USE pokedex; | ||
|
|
||
| CREATE TABLE pokemon( | ||
| id INT PRIMARY KEY NOT NULL, | ||
| name VARCHAR(50), | ||
| img VARCHAR(256) | ||
| ); | ||
|
|
||
| CREATE TABLE types( | ||
| id INT PRIMARY KEY NOT NULL, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Recommend using auto increment here as well |
||
| name VARCHAR(32) | ||
| ); | ||
|
|
||
| CREATE TABLE poke_type( | ||
| id INT PRIMARY KEY AUTO_INCREMENT, | ||
| pokeId INT NOT NULL, | ||
| typeId INT NOT NULL, | ||
| FOREIGN KEY (pokeId) REFERENCES pokemon(id), | ||
| FOREIGN KEY (typeId) REFERENCES types(id) | ||
| ); | ||
|
|
||
| SELECT pokemon.ID AS id, name,types.type, img FROM pokemon join poke_type on pokemon.id = poke_type.pokeId join types on poke_type.typeId = types.id order by pokeId; | ||
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I recommend creating your schema with a sql script. You can run the script whenever you want to recreate your database