Skip to content

Commit

Permalink
Fix for CakeShell schema generate for Sqlsrv
Browse files Browse the repository at this point in the history
Do not generate invalid schema.php when using SQLServer

Refs #3559
  • Loading branch information
ravage84 authored and markstory committed Feb 5, 2013
1 parent 05546af commit fa118a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Model/Datasource/DboSource.php
Original file line number Diff line number Diff line change
Expand Up @@ -2954,7 +2954,7 @@ public function resetSequence($table, $column) {
* @return array Fields in table. Keys are column and unique
*/
public function index($model) {
return false;
return array();
}

/**
Expand Down

0 comments on commit fa118a7

Please sign in to comment.