defmodule Bwc.Repo.Migrations.AddPlayed do use Ecto.Migration def change do alter table("cards") do add :played, :boolean, default: false end end end