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

ブックマーク機能の追加

Bookmarkモデルの作成 rails g model Bookmark user:references board:references class CreateBookmarks < ActiveRecord::Migration[5.2] def change create_table :bookmarks do |t| t.references :user, foreign_key: true t.references :board, foreign_…