提交代码
This commit is contained in:
31
vendor/doctrine/dbal/lib/Doctrine/DBAL/Events.php
vendored
Normal file
31
vendor/doctrine/dbal/lib/Doctrine/DBAL/Events.php
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace Doctrine\DBAL;
|
||||
|
||||
/**
|
||||
* Container for all DBAL events.
|
||||
*
|
||||
* This class cannot be instantiated.
|
||||
*/
|
||||
final class Events
|
||||
{
|
||||
/**
|
||||
* Private constructor. This class cannot be instantiated.
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
public const postConnect = 'postConnect';
|
||||
|
||||
public const onSchemaCreateTable = 'onSchemaCreateTable';
|
||||
public const onSchemaCreateTableColumn = 'onSchemaCreateTableColumn';
|
||||
public const onSchemaDropTable = 'onSchemaDropTable';
|
||||
public const onSchemaAlterTable = 'onSchemaAlterTable';
|
||||
public const onSchemaAlterTableAddColumn = 'onSchemaAlterTableAddColumn';
|
||||
public const onSchemaAlterTableRemoveColumn = 'onSchemaAlterTableRemoveColumn';
|
||||
public const onSchemaAlterTableChangeColumn = 'onSchemaAlterTableChangeColumn';
|
||||
public const onSchemaAlterTableRenameColumn = 'onSchemaAlterTableRenameColumn';
|
||||
public const onSchemaColumnDefinition = 'onSchemaColumnDefinition';
|
||||
public const onSchemaIndexDefinition = 'onSchemaIndexDefinition';
|
||||
}
|
||||
Reference in New Issue
Block a user