Migration: turn google auth tokens into text column type (#4428)

This commit is contained in:
hq1 2024-08-09 13:17:26 +03:00 committed by GitHub
parent cc769dfb3d
commit 7fb2bfbd29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
defmodule Plausible.Repo.Migrations.TurnGoogleAuthTokensIntoText do
use Ecto.Migration
def change do
alter table(:google_auth) do
modify :refresh_token, :text
modify :access_token, :text
end
end
end