Migration: turn google auth tokens into text column type (#4428)
This commit is contained in:
parent
cc769dfb3d
commit
7fb2bfbd29
|
|
@ -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
|
||||
Loading…
Reference in New Issue