public describeReferences (mixed $table, [mixed $schema]) Generates SQL to query foreign keys on a table
public describeIndexes (mixed $table, [mixed $schema]) Generates SQL to query indexes on a table
public describeIndex (mixed $index) Generates SQL to query indexes detail on a table
public describeColumns (mixed $table, [mixed $schema]) Generates SQL describing a table print_r($dialect->describeColumns("posts"));
public createView (mixed $viewName, array $definition, [mixed $schemaName]) Generates SQL to create a view
public createTable (mixed $tableName, mixed $schemaName, array $definition) Generates SQL to create a table
public addPrimaryKey (mixed $tableName, mixed $schemaName, Phalcon\Db\IndexInterface $index) Generates SQL to add the primary key to a table
public addIndex (mixed $tableName, mixed $schemaName, Phalcon\Db\IndexInterface $index) Generates SQL to add an index to a table
public addForeignKey (mixed $tableName, mixed $schemaName, Phalcon\Db\ReferenceInterface $reference) Generates SQL to add an index to a table
public addColumn (mixed $tableName, mixed $schemaName, Phalcon\Db\ColumnInterface $column) Generates SQL to add a column to a table
Page 291 of 382