Authenticator/migrations/2019-09-02-103718_create_accounts/up.sql
Bilal Elmoussaoui 650148cff1 cargo cult hotp implementation
this allows supporting hotp at least backend side
2020-12-06 21:05:25 +01:00

8 lines
232 B
SQL

-- Your SQL goes here
CREATE TABLE "accounts" (
"id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE,
"name" VARCHAR NOT NULL,
"counter" INTEGER NULL DEFAULT 1,
"token_id" TEXT NOT NULL,
"provider_id" INTEGER NOT NULL
)