We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8fcead commit 2b58e26Copy full SHA for 2b58e26
sql/install.mysql.utf8.sql
@@ -45,7 +45,7 @@ CREATE TABLE IF NOT EXISTS #__bfstop_unblock_token (
45
46
47
-- stores a whitelist of IPs which will never be blocked
48
-CREATE TABLE IF NOT EXISTS #__bfstop_whitelist (
+CREATE TABLE IF NOT EXISTS #__bfstop_allowlist (
49
id int(10) NOT NULL auto_increment,
50
ipaddress varchar(45) NOT NULL,
51
notes varchar(255) NOT NULL DEFAULT '',
sql/uninstall.mysql.utf8.sql
@@ -8,5 +8,5 @@ DROP TABLE IF EXISTS `#__bfstop_unblock`;
8
9
DROP TABLE IF EXISTS `#__bfstop_unblock_token`;
10
11
-DROP TABLE IF EXISTS `#__bfstop_whitelist`;
+DROP TABLE IF EXISTS `#__bfstop_allowlist`;
12
0 commit comments