= Database Schema =
The schema for {{{schema.xml}}} contains a small number of elements with required and optional attributes. The Propel generator contains a DTD (source:branches/1.3/generator/resources/dtd/database.dtd) that can be used to validate your {{{schema.xml}}} document. Also, when you build your SQL and OM, the Propel generator will automatically validate your {{{schema.xml}}} file using a new, highly-detailed XSD (source:branches/1.3/generator/resources/xsd/database.xsd).
== At-a-Glance ==
The hierarchical tree relationship for the elements is:
{{{
#!xml
}}}
== Detailed Reference ==
This page provides an alternate rendering of the Appendix B - Schema Reference from the user's guide.
It spells out in specific detail, just where each attribute or element belongs.
First, some conventions:
* Text surrounded by a '''/''' is text that you would provide and is not defined in the language. (i.e. a table name is a good example of this.)
* Optional items are surrounded by '''[''' and ''']''' characters.
* Items where you have an alternative choice have a '''|''' character between them (i.e. true|false)
* Alternative choices may be delimited by '''{''' and '''}''' to indicate that this is the default option, if not overridden elsewhere.
* '''...''' means repeat the previous item.
=== element ===
Starting with the {{{}}} element. The ''attributes'' and ''elements'' available are:
{{{
#!xml
...
}}}
The {{{package}}}, {{{baseClass}}}, {{{basePeer}}}, {{{defaultPhpNamingMethod}}}, and {{{heavyIndexing}}} attributes are generally optional.
A Database element may include an {{{}}} element, or multiple {{{}}} elements.
* {{{baseClass}}} allows you to specify a default base class that all generated Propel objects should extend ({{{in place of propel.om.BaseObject}}}).
* {{{basePeer}}} instructs Propel to use a different SQL-generating {{{BasePeer}}} class (or sub-class of {{{BasePeer}}}) for all generated objects.
* {{{defaultIdMehtod}}} sets the default id method to use for auto-increment columns.
* {{{defaultPhpNamingMethod}}} the default naming method to use.
* {{{heavyIndexing}}} adds indexes for each component of the primary key (when using composite primary keys).
* {{{package}}} specifies the "package" for the generated classes.
=== element ===
The {{{}}} element is pretty simple. It just includes a schema file from somewhere on the file systems. The format is:
{{{
#!xml
}}}
=== element ===
The {{{}}} element is the most complicated of the usable elements. Its definition looks like this:
{{{
#!xml
}}}
According to the schema, {{{name}}} is the only required attribute. Also, the {{{idMethod}}}, {{{phpNamingMethod}}}, {{{baseClass}}}, {{{basePeer}}}, and {{{heavyIndexing}}} attributes all default to what is specified by the {{{}}} element.
==== Description of Attributes ====
* {{{abstract}}} Whether the generated ''stub'' class will be abstract (e.g. if you're using inheritance)
* {{{baseClass}}} allows you to specify a class that the generated Propel objects should extend ({{{in place of propel.om.BaseObject}}}).
* {{{basePeer}}} instructs Propel to use a different SQL-generating {{{BasePeer}}} class (or sub-class of {{{BasePeer}}}).
* {{{heavyIndexing}}} adds indexes for each component of the primary key (when using composite primary keys).
* {{{idMethod}}} sets the id method to use for auto-increment columns.
* {{{package}}} specifies the "package" for the generated classes.
* {{{readOnly}}} suppresses the mutator/setter methods, save() and delete() methods.
* {{{skipSql}}} instructs Propel not to generate DDL SQL for the specified table. This can be used together with {{{readOnly}}} for supperting VIEWS in Propel.
* {{{treeMode}}} is used to indicate that this table is part of a node tree. Currently the only supported values are "!NestedSet" (see [wiki:Documentation/1.3/Tree/NestedSet]) and "!MaterializedPath" (see: [wiki:Documentation/1.3/Tree/MaterializedPath]).
* {{{reloadOnInsert}}} is used to indicate that the object should be reloaded from the database when an INSERT is performed. This is useful if you have triggers (or other server-side functionality like column default expressions) that alters the database row on INSERT.
* {{{reloadOnUpdate}}} is used to indicate that the object should be reloaded from the database when an UPDATE is performed. This is useful if you have triggers (or other server-side functionality like column default expressions) that alters the database row on UPDATE.
* {{{allowPkInsert}}} can be used if you want to define the primary key of a new object being inserted. By default if idMethod is "native", Propel would throw an exception. However, in some cases this feature is useful, for example if you do some replication of data in an master-master environment. It defaults to false.
=== element ===
{{{
#!xml
[]
}}}
==== Description of Attributes ====
* {{{defaultValue}}} The default value that the object will have for this column in the PHP instance after creating a "new Object". This value is always interpreted as a string.
* {{{defaultExpr}}} The default value for this column as expressed in SQL. This value is used solely for the "sql" target which builds your database from the schema.xml file. The defaultExpr is the SQL expression used as the "default" for the column.
=== element ===
To link a column to another table use the following syntax:
{{{
#!xml
}}}
=== element ===
To create an index on one or more columns, use the following syntax:
{{{
#!xml
...
}}}
In some cases your RDBMS may require you to specify an index size.
=== element ===
To create a unique index on one or more columns, use the following syntax:
{{{
#!xml
...
}}}
In some cases your RDBMS may require you to specify an index size for unique indexes.
=== element ===
If you are using a database that uses sequences for auto-increment columns (e.g. PostgreSQL or Oracle), you can customize the name of the sequence using the tag:
{{{
#!xml
}}}