1
0
mirror of https://github.com/algora-io/tv.git synced 2025-09-16 08:26:20 +02:00

use text instead of varchar for token fields

This commit is contained in:
zafer
2024-12-17 04:00:02 +03:00
parent 0fe16aa4ad
commit 929266eb3d

View File

@@ -0,0 +1,10 @@
defmodule Algora.Repo.Local.Migrations.ConvertTokenFieldsToText do
use Ecto.Migration
def change do
alter table(:identities) do
modify :provider_token, :text, from: :string
modify :provider_refresh_token, :text, from: :string
end
end
end