Skip to content

Commit

Permalink
Migration: turn google auth tokens into text column type (plausible#4428
Browse files Browse the repository at this point in the history
)
  • Loading branch information
aerosol authored Aug 9, 2024
1 parent cc769df commit 7fb2bfb
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7fb2bfb

Please sign in to comment.