mirror of
https://github.com/grocy/grocy.git
synced 2025-09-16 17:56:51 +00:00
8 lines
223 B
MySQL
8 lines
223 B
MySQL
![]() |
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'))
|
||
|
)
|