Class Schema
Representation of a database table schema.
- ICanBoogie\ActiveRecord\Schema implements ArrayAccess, IteratorAggregate uses ICanBoogie\Accessor\AccessorTrait (not available)
Methods summary
protected
get_primary( void )
: array|string|null
Returns the primary key of the schema.
Returns the primary key of the schema.
Returns
array|string|null
A multi-dimensional primary key is returned as an array.
A multi-dimensional primary key is returned as an array.
protected
get_indexes( void )
: array
Returns the indexes of the schema.
Returns the indexes of the schema.
Returns
array
protected
get_unique_indexes( void )
: array
Returns unique indexes.
Returns unique indexes.
Returns
array
public
offsetExists( string $column_id
)
: boolean
Checks if a column exists.
Checks if a column exists.
Parameters
$column_id
- Column identifier.
Returns
boolean
Implementation of
ArrayAccess::offsetExists()
public
offsetGet( string $column_id
)
: ICanBoogie\ActiveRecord\SchemaColumn
Returns a column.
Returns a column.
Parameters
$column_id
Returns
Throws
ICanBoogie\OffsetNotDefined
if the column is not defined.
if the column is not defined.
Implementation of
ArrayAccess::offsetGet()
public
offsetSet( string $column_id
, string|array|ICanBoogie\ActiveRecord\SchemaColumn
$column_options
)
Adds a column to the schema.
Adds a column to the schema.
Parameters
$column_id
$column_options
Implementation of
ArrayAccess::offsetSet()
public
offsetUnset( string $column_id
)
Removes a column from the schema.
Removes a column from the schema.
Parameters
$column_id
Implementation of
ArrayAccess::offsetUnset()