12 lines
222 B
Elixir
12 lines
222 B
Elixir
|
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
|