document what the U type stands for

pull/872/head
El RIDO 2022-01-26 05:26:47 +01:00
parent 0333777a37
commit 53c0e4976b
No known key found for this signature in database
GPG Key ID: 0F5C940A6BD81F92
1 changed files with 1 additions and 0 deletions

View File

@ -633,6 +633,7 @@ class Database extends AbstractData
$sql = 'SELECT "tabname" FROM "systables"';
break;
case 'mssql':
// U: tables created by the user
$sql = 'SELECT "name" FROM "sysobjects" '
. 'WHERE "type" = \'U\' ORDER BY "name"';
break;