16 lines
341 B
Elixir
16 lines
341 B
Elixir
|
defmodule Pleroma.Repo.Migrations.CreateOAuthToken do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create table(:oauth_tokens) do
|
||
|
add :app_id, references(:apps)
|
||
|
add :user_id, references(:users)
|
||
|
add :token, :string
|
||
|
add :refresh_token, :string
|
||
|
add :valid_until, :naive_datetime
|
||
|
|
||
|
timestamps()
|
||
|
end
|
||
|
end
|
||
|
end
|