GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#1301)
by
unknown
13:19
created
phpmyfaq/setup/assets/sql/sqlsrv.sql.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 PRIMARY KEY (id))";
73 73
 
74 74
 //faqattachment
75
-$query[] = "CREATE TABLE " . $sqltblpre . "faqattachment (
75
+$query[] = "CREATE TABLE ".$sqltblpre."faqattachment (
76 76
 id INTEGER NOT NULL,
77 77
 record_id INTEGER NOT NULL,
78 78
 record_lang VARCHAR(5) NOT NULL,
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 PRIMARY KEY (id))";
87 87
 
88 88
 //faqattachment file
89
-$query[] = "CREATE TABLE " . $sqltblpre . "faqattachment_file (
89
+$query[] = "CREATE TABLE ".$sqltblpre."faqattachment_file (
90 90
 virtual_hash CHAR(32) NOT NULL,
91 91
 contents TEXT NOT NULL,
92 92
 PRIMARY KEY (virtual_hash))";
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 )";
244 244
 
245 245
 //faqinstances
246
-$query[] = "CREATE TABLE " . $sqltblpre . "faqinstances (
246
+$query[] = "CREATE TABLE ".$sqltblpre."faqinstances (
247 247
 id INT NOT NULL,
248 248
 url VARCHAR(255) NOT NULL,
249 249
 instance VARCHAR(255) NOT NULL,
Please login to merge, or discard this patch.