Diffuser/priv/repo/migrations/20220823023410_create_promp...

14 lines
274 B
Elixir

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
end
end