Skip to content

Commit b9957e7

Browse files
committed
ForeignKeyDefinition: fixed ACTION_NO_ACTION & ACTION_SET_NULL
1 parent b3bc928 commit b9957e7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Statements/ForeignKeyDefinition.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
class ForeignKeyDefinition implements IStatement
1212
{
1313
const ACTION_RESTRICT = 'RESTRICT';
14-
const ACTION_NO_ACTION = 'NO_ACTION';
14+
const ACTION_NO_ACTION = 'NO ACTION';
1515
const ACTION_CASCADE = 'CASCADE';
16-
const ACTION_SET_NULL = 'SET_NULL';
16+
const ACTION_SET_NULL = 'SET NULL';
1717

1818
/** @var string|NULL */
1919
private $name;

0 commit comments

Comments
 (0)