Change item title column to text from string
This commit is contained in:
parent
5ece9cd21c
commit
e5036d24d0
|
@ -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
|
Loading…
Reference in New Issue