activerecord-cards
Continuing on from the ruby-oop-cards exercise: https://github.com/wdi-sg/ruby-oop-cards/
A set of starter code has been provided with a working card game.
-
Create a Postgres database with name
cardgame
. -
Create a
hands
table in schema.sql -
Inside the
hands
table, keep a record of each hand played and the user name. -
When the game ends, print all the hands that have been played this session.
Hints:
some relevant commands:
$ createdb db_name
$ psql -d db_name < db/schema.sql
further
- Store the user name in a separate
users
table. - When the game ends, print all the hands that have been played this session.
Hints:
Look into setting up associations http://guides.rubyonrails.org/association_basics.html