LoginSignup
0
0

More than 3 years have passed since last update.

rails のCRUD処理について

Posted at

rails new sample_app -sqlite3

cd sample_app

bundle exec rake db:create

controllers ディレクトリの中にusers_contoroller.rbを作る

route.rbの設定

rails g model users

migrateファイルにカラムの設定

bundle exec rake db:migrate ここでデータベースがcreateされる

viewsディレクトリにusersフォルダを作成。そこにusers.html.erbを作成

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0