mirror of
https://github.com/netfun2000/hipudding-teslamate.git
synced 2026-02-27 09:44:28 +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
|