Skip to content

Commit 3681f01

Browse files
committed
ForeignKey: fixed ACTION_NO_ACTION & ACTION_SET_NULL
1 parent 0822654 commit 3681f01

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ForeignKey.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
class ForeignKey
77
{
88
const ACTION_RESTRICT = 'RESTRICT';
9-
const ACTION_NO_ACTION = 'NO_ACTION';
9+
const ACTION_NO_ACTION = 'NO ACTION';
1010
const ACTION_CASCADE = 'CASCADE';
11-
const ACTION_SET_NULL = 'SET_NULL';
11+
const ACTION_SET_NULL = 'SET NULL';
1212

1313
/** @var string */
1414
private $name;

0 commit comments

Comments
 (0)