diff options
Diffstat (limited to 'src/Statements/DropStatement.php')
-rw-r--r-- | src/Statements/DropStatement.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Statements/DropStatement.php b/src/Statements/DropStatement.php index babf18a..f0cd1ce 100644 --- a/src/Statements/DropStatement.php +++ b/src/Statements/DropStatement.php @@ -46,6 +46,21 @@ class DropStatement extends Statement ); /** + * The clauses of this statement, in order. + * + * @see Statement::$CLAUSES + * + * @var array + */ + public static $CLAUSES = array( + 'DROP' => array('DROP', 2), + // Used for options. + '_OPTIONS' => array('_OPTIONS', 1), + // Used for select expressions. + 'DROP_' => array('DROP', 1), + ); + + /** * Dropped elements. * * @var FieldFragment[] |