Skip to content

Commit

Permalink
Debugging Phalcon Migration
Browse files Browse the repository at this point in the history
  • Loading branch information
Fenikkusu committed Apr 23, 2022
1 parent 2de9633 commit 2099eed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion phalcon/Db/Adapter/Pdo/Mysql.zep
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ class Mysql extends PdoAdapter
} elseif index["Non_unique"] == 0 {
let indexes[keyName]["type"] = "UNIQUE";
} else {
let indexes[keyName]["type"] = null;
let indexes[keyName]["type"] = "";
}
}

Expand Down
8 changes: 4 additions & 4 deletions phalcon/Db/Reference.zep
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class Reference implements ReferenceInterface
*
* @var string
*/
protected referencedSchema { get };
protected referencedSchema = "" { get };

/**
* Referenced Table
Expand All @@ -73,21 +73,21 @@ class Reference implements ReferenceInterface
*
* @var string
*/
protected schemaName { get };
protected schemaName = "" { get };

/**
* ON DELETE
*
* @var string
*/
protected onDelete { get };
protected onDelete = "" { get };

/**
* ON UPDATE
*
* @var string
*/
protected onUpdate { get };
protected onUpdate = "" { get };

/**
* Phalcon\Db\Reference constructor
Expand Down

0 comments on commit 2099eed

Please sign in to comment.