Alzabo::Create::ForeignKey - Foreign key objects for schema creation. |
Alzabo::Create::Column
object(s))
Alzabo::Create::Column
object(s))
Alzabo::Create::ForeignKey - Foreign key objects for schema creation.
use Alzabo::Create::ForeignKey;
A foreign key is an object defined by several properties. It represents a relationship from a column in one table to a column in another table. This relationship can be described in this manner:
There is a relationship from column BAZ in table foo to column BOZ in table bar. For every entry in column BAZ, there must X..Y corresponding entries in column BOZ. For every entry in column BOZ, there must be Y..Z corresponding entries in column BAZ. X, Y, and Z are 0, 1, or n, and must form one of these pairs: 0..1, 0..n, 1..1, 1..n.
The properties that make up a foreign key are:
Cardinality is generated from the two min_max values. This is the max from to the max to. If min_max_from was 0..1 and min_max_to was 1..n then the cardinality of the relationship would be 1..n.
Alzabo::ForeignKey
Note: all relevant documentation from the superclass has been merged into this document.
Parameters:
Alzabo::Create::Column
object(s)
Alzabo::Create::Column
object(s)
The first of these scalars can be the value '0' or '1' while the second can be '1' or 'n'.
A new Alzabo::Create::ForeignKey
object.
The relevant Alzabo::Create::Table
object.
The relevant Alzabo::Create::Column
object(s)
for the
property.
An array of array references. The references are to two column array
of Alzabo::Create::Column
objects. These two columns
correspond in the tables being linked together.
Alzabo::Create::Column
object(s))
Set the column(s)
that the relation is from. This can be either a
single a column object or a reference to an array of column objects.
Alzabo::Create::Column
object(s))
Set the column(s)
that the relation is to. This can be either a
single a column object or a reference to an array of column objects.
This will be either 1..1 or 1..n.
A two element array containing the two portions of the cardinality of the relationship.
A boolean value indicating whether there is a dependency from one table to the other.
A boolean value indicating what kind of relationship the object represents.
Sets the min_max value of the relation of the 'from' table to the 'to' table.
Sets the min_max value of the relation of the 'to' table to the 'from' table.
NOTE: All the 'min_max' stuff is going to go away in favor of using cardinality and dependency terms.
Dave Rolsky, <autarch@urth.org>
Alzabo::Create::ForeignKey - Foreign key objects for schema creation. |