Convert other item fields to text
This commit is contained in:
parent
59924ce8c8
commit
42f976f00f
|
@ -0,0 +1,11 @@
|
|||
defmodule Frenzy.Repo.Migrations.ChangeItemFieldsToText do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
alter table(:items) do
|
||||
modify :guid, :text
|
||||
modify :url, :text
|
||||
modify :creator, :text
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue