Files
phoenix-ausblick/priv/repo/migrations/20230504155139_add_remarks_to_articles.exs
2023-05-04 18:12:57 +02:00

10 lines
170 B
Elixir

defmodule Outlook.Repo.Migrations.AddRemarksToArticles do
use Ecto.Migration
def change do
alter table(:articles) do
add :remarks, :text
end
end
end