Convert other item fields to text

This commit is contained in:
Shadowfacts 2021-10-21 12:04:44 -04:00
parent 59924ce8c8
commit 42f976f00f
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
1 changed files with 11 additions and 0 deletions

View File

@ -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