JOL/priv/repo/migrations/20240924145455_create_posts.exs

15 lines
283 B
Elixir
Raw Permalink Normal View History

defmodule JOL.Repo.Migrations.CreatePosts do
use Ecto.Migration
def change do
create table(:posts) do
add :title, :string
add :body, :text
add :published_at, :naive_datetime
add :slug, :string
timestamps(type: :utc_datetime)
end
end
end