Skip to content
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

Wee2 arunachalam #93

Open
wants to merge 30 commits into
base: week2_assignment
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
913d30b
Update pet.rb
arunac535 Jan 2, 2023
0a9109f
Update prime_numbers.rb
arunac535 Jan 2, 2023
563e21e
Update pet.rb
arunac535 Jan 2, 2023
ba4479b
Update pet.rb
arunac535 Jan 2, 2023
7d9bcfa
Update prime_numbers.rb
arunac535 Jan 3, 2023
1c8abe3
Update pet.rb
arunac535 Jan 4, 2023
b98ad46
Add hello_wolrd from previous year
hrushikeshj Jan 10, 2023
ef6ea0e
Add hello_wolrd from previous year
hrushikeshj Jan 10, 2023
f07a650
Merge pull request #99 from IRIS-NITK/week3_assignment
hrushikeshj Jan 10, 2023
ae786d7
Football scaffold
hrushikeshj Jan 10, 2023
43a7123
add hello_world test
hrushikeshj Jan 10, 2023
3a2d7c1
Merge branch 'main' of https://github.com/IRIS-NITK/IRIS-RoR-Bootcamp…
hrushikeshj Jan 10, 2023
6409413
Update README.md
hrushikeshj Jan 10, 2023
14066df
Update README.md
hrushikeshj Jan 10, 2023
a73e7fe
update gitignore
hrushikeshj Jan 10, 2023
e9de726
Merge branch 'main' of https://github.com/IRIS-NITK/IRIS-RoR-Bootcamp…
hrushikeshj Jan 10, 2023
4246703
Merge branch 'IRIS-NITK:main' into wee2_Arunachalam
arunac535 Jan 10, 2023
231ad31
Update README.md
hrushikeshj Jan 11, 2023
28e54c7
Merge branch 'main' into week3_assignment
hrushikeshj Jan 11, 2023
1c2644f
Add football assignment
hrushikeshj Jan 12, 2023
8ce42c0
Add football assignment
hrushikeshj Jan 12, 2023
41b465e
Update README.md
hrushikeshj Jan 12, 2023
8b67128
add tests
hrushikeshj Jan 13, 2023
0a1ae8d
Add week 3 tests
hrushikeshj Jan 13, 2023
27b02ad
Add week 3 tests
hrushikeshj Jan 13, 2023
5c5a1cd
Add week 3 tests
hrushikeshj Jan 13, 2023
77ab65b
Add week 3 tests
hrushikeshj Jan 13, 2023
221d1cd
Update README.md
hrushikeshj Jan 13, 2023
e314722
Add creating tables for week-3 (#108)
mittal-parth Jan 13, 2023
f25d3e6
Merge branch 'IRIS-NITK:main' into wee2_Arunachalam
arunac535 Jan 16, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update README.md
hrushikeshj authored Jan 12, 2023
commit 41b465e3c8a4603fb4f123548d6a1cc05aa62408
5 changes: 4 additions & 1 deletion week_3/football/README.md
Original file line number Diff line number Diff line change
@@ -79,7 +79,10 @@ This adds some sample data(/test/fixtures/football_players.yml) to the database.
The INSERT INTO statement is used to insert new records in a table

```sql
INSERT INTO football_players (id, name, rank, country, position, squad, league, age, born, minutes_played, goals, penalty_kicks_made, matches_played, corner_kicks, yellow_card, red_card, penalty_kicks_won, fouls_committed) VALUES (1, Sergio Agüero, 20, "ARG", , "forward", "Barcelona", "La Liga", 33, 1988, 151, 179, 10, 4, 4, 3, 4, 1,)
INSERT INTO football_players (id, name, rank, country, position, squad, league, age, born,
minutes_played, goals, penalty_kicks_made, matches_played, corner_kicks, yellow_card,
red_card, penalty_kicks_won, fouls_committed)
VALUES (1, Sergio Agüero, 20, "ARG", , "forward", "Barcelona", "La Liga", 33, 1988, 151, 179, 10, 4, 4, 3, 4, 1,)
```

In Rails