slides: http://gdibtv.github.io/gdi-rails
Girl Develop It is here to provide affordable and accessible programs to learn software through mentorship and hands-on instruction.
Some "rules"
Questions?
An application that lists artists and allows users to vote for their favorite songs by artist, and suggest new songs to vote on.
????
What do we need?
$ rails generate model Artist full_name:string
$ rails generate model Song title:string artist:belongs_to
$ rails generate model Vote song:belongs_to
Generating models also generated database migrations for us. Let's check them out and make sure they list the attributes we want.
Let's add 'current hairstyle' attribute to Artist table!
Since the migration hasn't been run yet, we can just edit it to add the new column.
def change
create_table :artists do |t|
t.string :full_name
t.string :current_hairstyle
t.timestamps
end
end
Ok, now that it looks good, run the migrations.
$ rake db:migrate
It would be pretty cool if songs has an attribute called 'optimal volume'. Let's create a migration to add that to the table. Run this in the terminal:
$ rails generate migration AddOptimalVolumetoSongs
And this will be the migration file it generates, with your additions:
class AddOptimalVolumetoSongs < ActiveRecord::Migration
def change
add_column :songs, :optimal_volume, :string
end
end
Sweet. Now run the migration ('rake db:migrate') so the schema is up to date.
Generate a migration to add a column called 'hometown' with a type of 'string' to the Artists table.
The second part of building data associations is in the models.
class Artist < ActiveRecord::Base
has_many :songs
end
class Song < ActiveRecord::Base
belongs_to :artist
has_many :votes
end
class Vote < ActiveRecord::Base
belongs_to :song
end
Rails supports six types of associations:
Note: the last two are not used very often.
Associations in more detail...This sets up either a one-to-one or one-to-many model with another mdoel.
This sets up a one-to-one connection with a another model.
class Supplier < ActiveRecord::Base
has_one :account
end
This sets up a one-to-many connection with another model.
class Customer < ActiveRecord::Base
has_many :orders
end
This sets up a many-to-many connection to another model, through a third model.
class Physician < ActiveRecord::Base
has_many :appointments
has_many :patients, :through => :appointments
end
class Appointment < ActiveRecord::Base
belongs_to :physician
belongs_to :patient
end
class Patient < ActiveRecord::Base
has_many :appointments
has_many :physicians, :through => :appointments
end
A has_and_belongs_to_many association creates a direct many-to-many connection with another model, with no intervening model. For example, if your application includes assemblies and parts, with each assembly having many parts and each part appearing in many assemblies, you could declare the models this way:
class Assembly < ActiveRecord::Base
has_and_belongs_to_many :parts
end
class Part < ActiveRecord::Base
has_and_belongs_to_many :assemblies
end
You will need to remember to setup the intermediate table in the database
A database index is a data structure that improves the speed of data retrieval at the cost of more storage space. An index is a copy of the selected columns, which can be searched very efficiently.
Today we did this:
Use Rails Console with your Best Song App
Try some commands