Diffuser/priv/repo/migrations/20220905174728_create_votes...

14 lines
282 B
Elixir

defmodule Diffuser.Repo.Migrations.CreateVotes do
use Ecto.Migration
def change do
create table(:votes) do
add :prompt_request_id, references(:prompt_requests, on_delete: :nothing)
timestamps()
end
create index(:votes, [:prompt_request_id])
end
end