Ljonka has submitted this change and it was merged.

Change subject: move table to bs_ prefixed one
......................................................................


move table to bs_ prefixed one

Change-Id: I0d46ab01755944f463edeef0664d84e4bc8f6564
---
M db/editnotifyconnector.sql
M includes/BlueSpiceEditNotifyConnector.php
2 files changed, 5 insertions(+), 5 deletions(-)

Approvals:
  Robert Vogel: Looks good to me, approved
  Ljonka: Verified



diff --git a/db/editnotifyconnector.sql b/db/editnotifyconnector.sql
index 24c0fd3..c3a4c57 100644
--- a/db/editnotifyconnector.sql
+++ b/db/editnotifyconnector.sql
@@ -1,6 +1,6 @@
 BEGIN;
 
-CREATE TABLE /*_*/editnotifyconnector(
+CREATE TABLE /*_*/bs_editnotifyconnector(
 -- Primary key
 enc_id INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
 -- namespace.id of the namespace for notifications
@@ -11,6 +11,6 @@
 enc_action VARCHAR(256)
 )/*$wgDBTableOptions*/;
 
-CREATE INDEX /*i*/enc_ns_id ON /*_*/editnotifyconnector (enc_ns_id);
-CREATE INDEX /*i*/enc_action ON /*_*/editnotifyconnector (enc_action);
-COMMIT;
\ No newline at end of file
+CREATE INDEX /*i*/enc_ns_id ON /*_*/bs_editnotifyconnector (enc_ns_id);
+CREATE INDEX /*i*/enc_action ON /*_*/bs_editnotifyconnector (enc_action);
+COMMIT;
diff --git a/includes/BlueSpiceEditNotifyConnector.php 
b/includes/BlueSpiceEditNotifyConnector.php
index cda96cc..1f24c03 100644
--- a/includes/BlueSpiceEditNotifyConnector.php
+++ b/includes/BlueSpiceEditNotifyConnector.php
@@ -2,7 +2,7 @@
 
 class BlueSpiceEditNotifyConnector {
 
-       static $tableName = "editnotifyconnector";
+       static $tableName = "bs_editnotifyconnector";
 
        /**
         *

-- 
To view, visit https://gerrit.wikimedia.org/r/318094
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I0d46ab01755944f463edeef0664d84e4bc8f6564
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/BlueSpiceEditNotifyConnector
Gerrit-Branch: master
Gerrit-Owner: Ljonka <l.verhovs...@gmail.com>
Gerrit-Reviewer: Ljonka <l.verhovs...@gmail.com>
Gerrit-Reviewer: Robert Vogel <vo...@hallowelt.biz>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to