Changed the bidding round status field from "running" to "stopped".
This commit is contained in:
@ -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
|
||||
Reference in New Issue
Block a user