mirror of
https://github.com/plausible/analytics.git
synced 2024-12-23 17:44:43 +03:00
Add migration for table storing HelpScout credentials (#4346)
This commit is contained in:
parent
79188a90b7
commit
ff778436c4
@ -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
|
Loading…
Reference in New Issue
Block a user