frenzy/priv/repo/migrations/20200718235114_item_add_con...

10 lines
185 B
Elixir
Raw Normal View History

2020-07-19 02:18:41 +00:00
defmodule Frenzy.Repo.Migrations.ItemAddContentType do
use Ecto.Migration
def change do
alter table(:items) do
add :content_type, :string, default: nil
end
end
end