fp/apps/bright/priv/repo/migrations/20241227185046_create_posts.exs

13 lines
220 B
Elixir
Raw Permalink Normal View History

2025-01-03 06:45:35 -08:00
defmodule Bright.Repo.Migrations.CreatePosts do
use Ecto.Migration
def change do
create table(:posts) do
add :title, :string
add :body, :text
timestamps(type: :utc_datetime)
end
end
end