diff options
Diffstat (limited to 'engine/schema/mysql.sql')
| -rw-r--r-- | engine/schema/mysql.sql | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/engine/schema/mysql.sql b/engine/schema/mysql.sql index 619781d74..b9dc633ae 100644 --- a/engine/schema/mysql.sql +++ b/engine/schema/mysql.sql @@ -261,6 +261,13 @@ CREATE TABLE `prefix_users_apisessions` (  	KEY `token` (`token`)
  ) ENGINE=MEMORY;
 +-- HMAC Cache protecting against Replay attacks
 +CREATE TABLE `prefix_hmac_cache` (
 +	`hmac` varchar(255) NOT NULL,
 +
 +	PRIMARY KEY  (`hmac`)
 +) ENGINE=MEMORY;
 +
  -- Datalists for things like db version
  CREATE TABLE `prefix_datalists` (
    `name` varchar(32) NOT NULL,
  | 
