Files
osuuspuutarha/priv/repo/migrations/20240116170443_add_early_bird.exs

10 lines
201 B
Elixir

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