poex/priv/repo/migrations/20231124191833_create_opera...

18 lines
420 B
Elixir

defmodule Poex.Repo.Migrations.CreateOperations do
use Ecto.Migration
def change do
create table(:operations, primary_key: false) do
add :id, :uuid, primary_key: true, null: false
add :type, :string
add :value, :map
add :attributes, :map
add :document_id, references(:pad_documents, type: :uuid)
timestamps()
end
create index(:operations, [:document_id])
end
end