summaryrefslogtreecommitdiffstats
path: root/upgrading/4.7.0.txt
diff options
context:
space:
mode:
Diffstat (limited to 'upgrading/4.7.0.txt')
-rw-r--r--upgrading/4.7.0.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/upgrading/4.7.0.txt b/upgrading/4.7.0.txt
new file mode 100644
index 00000000..820e4540
--- /dev/null
+++ b/upgrading/4.7.0.txt
@@ -0,0 +1,11 @@
+1. Add ApiRateLimit table:
+
+---
+CREATE TABLE `ApiRateLimit` (
+ IP VARCHAR(45) NOT NULL,
+ Requests INT(11) NOT NULL,
+ WindowStart BIGINT(20) NOT NULL,
+ PRIMARY KEY (`ip`)
+) ENGINE = InnoDB;
+CREATE INDEX ApiRateLimitWindowStart ON ApiRateLimit (WindowStart);
+---