diff --git a/html/bt/database/bittorrent_ipbans.sql b/html/bt/database/bittorrent_ipbans.sql
new file mode 100644
index 0000000000..016953474e
--- /dev/null
+++ b/html/bt/database/bittorrent_ipbans.sql
@@ -0,0 +1,5 @@
+CREATE TABLE `bittorrent_ipbans` (
+ `ip` varbinary(256) NOT NULL default '',
+ `timestamp` int(14) NOT NULL,
+ PRIMARY KEY (`ip`)
+) ENGINE=MEMORY COMMENT='Banned IPs and when they can be unbanned (reset when SQL-server restarts)';
\ No newline at end of file