rails コマンド 覚書
基本のコマンド
プロジェクト作成
$ rails new app_name
サーバー起動
# どちらでも使える
$ rails server
$ rails s
コントローラー・モデル作成
# どちらでも使える
$ rails generate controller controller_name action_name
$ rails g model model_name column_name:type
rails console
モデル作成+保存 new
+ save
> Post.create(title: "hoge", content: "hogehoge")
テーブル一覧確認
出典 https://qiita.com/littlekbt/items/4847a6b73050bfc4a46e
> ActiveRecord::Base.connection.tables
レコードの有無確認
出典 http://o.inchiki.jp/obbr/146
> Post.exists?
#ある
=> true
#ない
=> false
終了する
# どちらでも使える
> quit
> exit
rails dbconsole
テーブル一覧確認
sqlite> .table
users posts
テーブルの中身確認
sqlite> select * from <テーブル名>;
終了する
# どちらでも使える
sqlite> .quit
sqlite> .exit
Author And Source
この問題について(rails コマンド 覚書), 我々は、より多くの情報をここで見つけました https://qiita.com/IKENO_O/items/c695ad59c6f81caca206著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .