Changed the bidding round status field from "running" to "stopped".

This commit is contained in:
2026-02-12 11:00:14 +01:00
parent 647da6c9d7
commit e01042130e
6 changed files with 43 additions and 20 deletions

View File

@ -0,0 +1,10 @@
defmodule BeetRoundServer.Repo.Migrations.BiddingRoundStatusStoppedInsteadOfRunning do
use Ecto.Migration
def change do
alter table(:bidding_rounds) do
add :stopped, :boolean, default: false, null: false
remove :running
end
end
end