Change item title column to text from string

This commit is contained in:
Shadowfacts 2021-09-22 20:56:51 -04:00
parent 5ece9cd21c
commit e5036d24d0
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
defmodule Frenzy.Repo.Migrations.ChangeItemTitleText do
use Ecto.Migration
def change do
alter table(:items) do
modify :title, :text
end
end
end