Commit 7d5d2179 authored by zYne's avatar zYne

updated the docs for table options

parent 1dfbc5b0
......@@ -11,7 +11,7 @@ class MyInnoDbRecord extends Doctrine_Record
{
\$this->hasColumn('name', 'string');
\$this->option('engine', 'INNODB');
\$this->option('type', 'INNODB');
}
}
?>");
......
......@@ -85,6 +85,7 @@ class DocTool
if (substr($c, 0, 5) == "<?php") {
include("docs/$name.php");
} elseif (strpos($c, '<br \>') !== false ||
strpos($c, '<br />') !== false ||
strpos($c, '<ul>') !== false ||
strpos($c, '<p>') !== false) {
print $c;
......
......@@ -18,6 +18,7 @@ Connection management
Object relational mapping
Introduction
Table and class naming
Table options
Columns
Column naming
Column aliases
......@@ -237,6 +238,15 @@ DQL (Doctrine Query Language)
Arithmetic functions
Datetime functions
Collection functions
Subqueries
Introduction
Comparisons using subqueries
Conditional expressions
ANY, IN and SOME
ALL
EXISTS and NOT EXISTS
Correlated subqueries
Subqueries in FROM clause
GROUP BY, HAVING clauses
ORDER BY clause
Introduction
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment