mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
8 lines
223 B
SQL
8 lines
223 B
SQL
CREATE TABLE api_keys (
|
|
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
|
|
api_key TEXT NOT NULL UNIQUE,
|
|
expires DATETIME,
|
|
last_used DATETIME,
|
|
row_created_timestamp DATETIME DEFAULT (datetime('now', 'localtime'))
|
|
)
|