defmodule Diffuser.Repo.Migrations.CreatePromptRequests do
use Ecto.Migration
def change do
create table(:prompt_requests, primary_key: false) do
add :id, :uuid, primary_key: true, null: false
add :prompt, :string
timestamps()
end