Static Public Member Functions | |
static | noAction () |
| |
static | restrict () |
| |
static | cascade () |
| |
static | setNull () |
| |
static | setDefault () |
| |
Public Attributes | |
const | NO_ACTION = 0x01 |
const | RESTRICT = 0x02 |
const | CASCADE = 0x03 |
const | SET_NULL = 0x04 |
const | SET_DEFAULT = 0x05 |
Protected Attributes | |
$names |
Definition at line 16 of file ForeignChangeAction.class.php.
static ForeignChangeAction::noAction | ( | ) | [static] |
static ForeignChangeAction::restrict | ( | ) | [static] |
Definition at line 43 of file ForeignChangeAction.class.php.
Referenced by SchemaBuilder::buildRelations().
static ForeignChangeAction::cascade | ( | ) | [static] |
Definition at line 51 of file ForeignChangeAction.class.php.
Referenced by SchemaBuilder::buildRelations().
static ForeignChangeAction::setNull | ( | ) | [static] |
static ForeignChangeAction::setDefault | ( | ) | [static] |
const ForeignChangeAction::NO_ACTION = 0x01 |
Definition at line 18 of file ForeignChangeAction.class.php.
const ForeignChangeAction::RESTRICT = 0x02 |
Definition at line 19 of file ForeignChangeAction.class.php.
const ForeignChangeAction::CASCADE = 0x03 |
Definition at line 20 of file ForeignChangeAction.class.php.
const ForeignChangeAction::SET_NULL = 0x04 |
Definition at line 21 of file ForeignChangeAction.class.php.
const ForeignChangeAction::SET_DEFAULT = 0x05 |
Definition at line 22 of file ForeignChangeAction.class.php.
ForeignChangeAction::$names [protected] |
Initial value:
array( self::NO_ACTION => 'NO ACTION', // default one self::RESTRICT => 'RESTRICT', self::CASCADE => 'CASCADE', self::SET_NULL => 'SET NULL', self::SET_DEFAULT => 'SET DEFAULT' )
Reimplemented from Enumeration.
Definition at line 24 of file ForeignChangeAction.class.php.