railsのscaffoldでアプリケション作成したけど、データベースの見方やデータの確認のやり方はどうすればいいの?と疑問を持っている初心者の方にこの記事を参考にしていただきたいです。
データベース接続(作成したアプリケーションディレクトリで)
rails dbconsole
scaffold_app_development=#
↑などが出てれば接続成功です
テーブル確認(usersはテーブル名です)
\d users
Column | Type | Collation | Nullable | Default
------------+-----------------------------+-----------+----------+-----------------------------------
id | bigint | | not null | nextval('users_id_seq'::regclass)
name | character varying | | |
address | character varying | | |
age | integer | | |
created_at | timestamp without time zone | | not null |
updated_at | timestamp without time zone | | not null |
データ確認
SELECT * FROM users;
id | name | address | age | created_at | updated_at
----+----------+---------+-----+----------------------------+----------------------------
1 | ユーザー | 埼玉 | 26 | 2020-01-23 22:33:28.970248 | 2020-01-23 22:34:42.532767
2 | test | 東京 | 20 | 2020-01-26 07:41:44.803812 | 2020-01-26 07:41:44.803812
exit
DB接続を切断することができます
ちなみにRailsコンソールでallメソッドを使ってもデータの確認できます。
rails console
irb(main):001:0> User.all (Userはモデル名)
User Load (0.5ms) SELECT "users".* FROM "users" LIMIT $1 [["LIMIT", 11]]
=> #<ActiveRecord::Relation
[#<User id: 1, name: "ユーザー", address: "埼玉県", age: 26, created_at: "2020-01-23 22:33:28", updated_at: "2020-01-23 22:34:42">,
# <User id: 2, name: "test", address: "東京", age: 20, created_at: "2020-01-26 07:41:44", updated_at: "2020-01-26 07:41:44">]>