chiya/priv/repo/migrations/20230401085952_add_featured_flag_to_note_image.exs

9 lines
181 B
Elixir

defmodule Chiya.Repo.Migrations.AddFeaturedFlagToNoteImage do
use Ecto.Migration
def change do
alter table(:note_images) do
add :featured, :boolean
end
end
end