Files
sukaato-site/priv/repo/migrations/20250725144032_create_comments.exs
2025-07-25 11:30:28 -04:00

21 lines
544 B
Elixir

defmodule Sukaato.Repo.Migrations.CreateComments do
use Ecto.Migration
def change do
create table(:comments) do
add :slug, :string
add :tripcode, :string
add :content, :text
add :ledit, :utc_datetime
add :post_id, references(:posts, on_delete: :nothing)
add :reply_to, references(:comments, on_delete: :nothing)
timestamps(type: :utc_datetime)
end
create unique_index(:comments, [:tripcode])
create index(:comments, [:post_id])
create index(:comments, [:reply_to])
end
end