Commit 2dea8f2 1 parent 01d523b commit 2dea8f2 Copy full SHA for 2dea8f2
File tree 2 files changed +3
-0
lines changed
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -632,6 +632,7 @@ private function defaultPartString() {
632
632
}
633
633
}
634
634
private function firstColPartString () {
635
+ $ this ->setWithTablePrefix (false );
635
636
$ retVal = MSSQLQuery::squareBr ($ this ->getName ()).' ' ;
636
637
$ colDataTypeSq = MSSQLQuery::squareBr ($ this ->getDatatype ());
637
638
$ colDataType = $ this ->getDatatype ();
Original file line number Diff line number Diff line change @@ -299,11 +299,13 @@ private function createFKString() {
299
299
$ sourceCols = [];
300
300
301
301
foreach ($ fkObj ->getSourceCols () as $ colObj ) {
302
+ $ colObj ->setWithTablePrefix (false );
302
303
$ sourceCols [] = '' .$ colObj ->getName ().'' ;
303
304
}
304
305
$ targetCols = [];
305
306
306
307
foreach ($ fkObj ->getOwnerCols () as $ colObj ) {
308
+ $ colObj ->setWithTablePrefix (false );
307
309
$ targetCols [] = '' .$ colObj ->getName ().'' ;
308
310
}
309
311
$ fkConstraint .= " constraint " .$ fkObj ->getKeyName ().' '
You can’t perform that action at this time.
0 commit comments