ypooo.hatenablog.com 第2章 データベース設計とマイグレーション(後編) 2-7 comments テーブル # priv/repo/migrations/XXXXXX_create_comments.exs defmodule RedditClone.Repo.Migrations.CreateComments do use Ecto.Migration def change do create table(:comments, primary_key: false) do add :id, :binary_id, primary_key: true add :body,…