mirror of
https://github.com/teslamate-org/teslamate.git
synced 2026-01-24 21:06:08 +08:00
13 lines
240 B
Elixir
13 lines
240 B
Elixir
defmodule TeslaMate.Repo.Migrations.CreateTokens do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:tokens) do
|
|
add(:access, :string, null: false)
|
|
add(:refresh, :string, null: false)
|
|
|
|
timestamps()
|
|
end
|
|
end
|
|
end
|