sloanelybutsurely.com/priv/repo/migrations/20250222164951_add_posts_table.exs
2025-02-22 12:35:49 -05:00

13 lines
288 B
Elixir

defmodule CMS.Repo.Migrations.AddPostsTable do
use Ecto.Migration
def change do
create table(:posts, primary_key: false) do
add :id, :uuid, primary_key: true
add :title, :text
add :contents, :text, null: false, default: ""
timestamps()
end
end
end