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

10 lines
181 B
Elixir
Raw Permalink Normal View History

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