main
1class CreateCakes < ActiveRecord::Migration
2  def change
3    create_table :cakes do |t|
4      t.string :name
5
6      t.timestamps
7    end
8  end
9end