phoenixRealWorld/priv/repo/migrations/20250410144625_create_articles.exs
ReyoKatsu 6431f6651a
init
2025-04-12 00:31:08 +09:00

12 lines
312 B
Elixir

defmodule PhoenixRealWorld.Repo.Migrations.CreateArticles do
use Ecto.Migration
def change do
create table(:articles) do
add :title, :string, null: false #←null: falseを追加
add :body, :text, null: false #←null: falseを追加
timestamps(type: :utc_datetime)
end
end
end