1.Railsで掲示板を作ってみる
1-4 枠組みソースの作成
②コントローラ、モデル、ビュー、ルーティング情報、テーブルのMigrationファイルが作成されていることを確認します
コントローラ
モデル
ビュー
ルーティング情報 RailsRoot/config/route.rb
Rails.application.routes.draw do
resources :webnotes
end
テーブルのMigrationファイル RailsRoot/db/migrate/201***********_create_webnotes.rb
class CreateWebnotes < ActiveRecord::Migration[5.2]
def change
create_table :webnotes do |t|
t.string :title
t.string :content
t.string :create_user
t.timestamps
end
end
end