diff --git a/priv/repo/migrations/20240708120453_create_help_scout_credentials.exs b/priv/repo/migrations/20240708120453_create_help_scout_credentials.exs new file mode 100644 index 000000000..6366aa3d0 --- /dev/null +++ b/priv/repo/migrations/20240708120453_create_help_scout_credentials.exs @@ -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