defmodule DaProductApp.Repo.Migrations.CreateAcquirerTerminalState do use Ecto.Migration def change do create table(:acquirer_terminal_state, primary_key: false) do add :id, :bigint, primary_key: true, null: false add :acquirer_terminal_id, :bigint, null: false add :is_busy, :boolean, null: false end end end