Skip to content

Commit 2b58e26

Browse files
committed
Fix name of allowlist table in (un)install sql
1 parent e8fcead commit 2b58e26

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sql/install.mysql.utf8.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ CREATE TABLE IF NOT EXISTS #__bfstop_unblock_token (
4545

4646

4747
-- stores a whitelist of IPs which will never be blocked
48-
CREATE TABLE IF NOT EXISTS #__bfstop_whitelist (
48+
CREATE TABLE IF NOT EXISTS #__bfstop_allowlist (
4949
id int(10) NOT NULL auto_increment,
5050
ipaddress varchar(45) NOT NULL,
5151
notes varchar(255) NOT NULL DEFAULT '',

sql/uninstall.mysql.utf8.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ DROP TABLE IF EXISTS `#__bfstop_unblock`;
88

99
DROP TABLE IF EXISTS `#__bfstop_unblock_token`;
1010

11-
DROP TABLE IF EXISTS `#__bfstop_whitelist`;
11+
DROP TABLE IF EXISTS `#__bfstop_allowlist`;
1212

0 commit comments

Comments
 (0)