MediaWiki REL1_40
|
@experimental More...
Inherits Wikimedia\Rdbms\SchemaBuilder.
Public Member Functions | ||||
__construct (AbstractPlatform $platform) | ||||
A builder object that take abstract schema definition and produces sql to create the tables. | ||||
addTable (array $schema) | ||||
An example of $schema value: [ 'name' => 'actor', 'columns' => [ [ 'actor_id', 'bigint', [ 'Unsigned' => true, 'Notnull' => true ] ], [ 'actor_user', 'integer', [ 'Unsigned' => true ] ], [ 'actor_name', 'string', [ 'Length' => 255, 'Notnull' => true ] ], ], 'indexes' => [ [ 'actor_user', [ 'actor_user' ], 'unique' => true ], [ 'actor_name', [ 'actor_name' ], 'unique' => true ] ], 'pk' => [ 'actor_id' ] ],.
| ||||
getSql () | ||||
| ||||
Wikimedia\Rdbms\DoctrineSchemaBuilder::__construct | ( | AbstractPlatform | $platform | ) |
A builder object that take abstract schema definition and produces sql to create the tables.
AbstractPlatform | $platform | A Doctrine Platform object, Can be Mysql, Sqlite, etc. |
Definition at line 23 of file DoctrineSchemaBuilder.php.
Wikimedia\Rdbms\DoctrineSchemaBuilder::addTable | ( | array | $schema | ) |
An example of $schema value: [ 'name' => 'actor', 'columns' => [ [ 'actor_id', 'bigint', [ 'Unsigned' => true, 'Notnull' => true ] ], [ 'actor_user', 'integer', [ 'Unsigned' => true ] ], [ 'actor_name', 'string', [ 'Length' => 255, 'Notnull' => true ] ], ], 'indexes' => [ [ 'actor_user', [ 'actor_user' ], 'unique' => true ], [ 'actor_name', [ 'actor_name' ], 'unique' => true ] ], 'pk' => [ 'actor_id' ] ],.
array | $schema |
Implements Wikimedia\Rdbms\SchemaBuilder.
Definition at line 31 of file DoctrineSchemaBuilder.php.
Wikimedia\Rdbms\DoctrineSchemaBuilder::getSql | ( | ) |
Implements Wikimedia\Rdbms\SchemaBuilder.
Definition at line 38 of file DoctrineSchemaBuilder.php.