2021-01-18から1日間の記事一覧

RailsTutorial14章

index add_index :relationships, :follower_id add_index :relationships, :followed_id add_index :relationships, [:follower_id, :followed_id], unique: true 高速化のため。 add_index :relationships, [:follower_id, :followed_id], unique: true 2…

RailsTutorial13章

複合キーインデックス add_index :microposts, [:user_id, :created_at] newではなくbuildで書くとアソシエーションベースでインスタンス生成している ことを明示することになる。 proc default_scope -> { order(created_at: :desc) } >> -> { puts "foo" }…

RailsTutorial12章

複合キーインデックス add_index :microposts, [:user_id, :created_at] newではなくbuildで書くとアソシエーションベースでインスタンス生成している ことを明示することになる。 proc default_scope -> { order(created_at: :desc) } >> -> { puts "foo" }…

RailsTutorial12章

複合キーインデックス add_index :microposts, [:user_id, :created_at] newではなくbuildで書くとアソシエーションベースでインスタンス生成している ことを明示することになる。 proc ```` default_scope -> { order(created_at: :desc) } -> { puts "foo"…