Add migration for table storing HelpScout credentials (#4346)

This commit is contained in:
Adrian Gruntkowski 2024-07-12 11:35:41 +02:00 committed by GitHub
parent 79188a90b7
commit ff778436c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,14 @@
defmodule Plausible.Repo.Migrations.CreateHelpscoutCredentials do
use Plausible
use Ecto.Migration
def change do
if ee?() do
create table(:help_scout_credentials) do
add :access_token, :binary, null: false
timestamps()
end
end
end
end