Pulling It All Together
Learn how to put Ruby's logic and structures together.
We'll cover the following...
Demonstration of ruby and rails features
Let’s look at an example of how Rails applies a number of Ruby features together to make the code we need to maintain more declarative. For now, we’ll focus on the Ruby-language aspects of the example:
Press + to interact
class CreateProducts < ActiveRecord::Migration[6.0]def changecreate_table :products do |t|t.string :titlet.text :descriptiont.string :image_urlt.decimal :price, precision: 8, scale: 2t.timestampsendendend
Note: Even if you didn’t know any Ruby, you’d probably be able to decipher that this code creates a table named “products”. The fields defined when this table is created include
title
, ...