9b61957154
- [doc getting-started:installation], or - [doc getting-started:installation Custom link text] - Updated Text_Wiki to 1.2.0 - Documentation should now pass XHTML validator - Formatted DSN section so that it's easier on eyes - The single quotes in <code type='php'> won't work anymore due to the Text_Wiki update. Use double quotes instead: <code type="php">. The single quotes have been converted to double quotes in documentation files. - Modified the links in h1-h6 headings to use the same style as the headings. - Some refactoring
42 lines
1.5 KiB
Plaintext
42 lines
1.5 KiB
Plaintext
Doctrine_Record::hasColumn() takes 4 arguments:
|
|
|
|
# **column name**
|
|
# **column type**
|
|
# **column length**
|
|
# **column constraints and validators**
|
|
|
|
<code type="php">
|
|
class Email extends Doctrine_Record {
|
|
public function setTableDefinition() {
|
|
// setting custom table name:
|
|
$this->setTableName('emails');
|
|
|
|
$this->hasColumn('address', // name of the column
|
|
'string', // column type
|
|
'200', // column length
|
|
array('notblank' => true,
|
|
'email' => true // validators / constraints
|
|
)
|
|
);
|
|
|
|
|
|
$this->hasColumn('address2', // name of the column
|
|
'string', // column type
|
|
'200', // column length
|
|
// validators / constraints without arguments can be
|
|
// specified also as as string with | separator
|
|
'notblank|email'
|
|
);
|
|
|
|
// Doctrine even supports the following format for
|
|
// validators / constraints which have no arguments:
|
|
|
|
$this->hasColumn('address3', // name of the column
|
|
'string', // column type
|
|
'200', // column length
|
|
array('notblank', 'email')
|
|
);
|
|
}
|
|
}
|
|
</code>
|