Early bird field to db

This commit is contained in:
2024-01-16 20:00:40 +02:00
parent 57ae053855
commit 6afff866a2
10 changed files with 270 additions and 150 deletions

View File

@@ -0,0 +1,9 @@
defmodule Osuuspuutarha.Repo.Migrations.AddEarlyBird do
use Ecto.Migration
def change do
alter table(:orders) do
add :early_bird, :boolean, default: false, null: false
end
end
end