schema = new Schema(); $this->platform = $platform; } /** * @inheritDoc */ public function addTable( array $schema ) { $this->addTableToSchema( $this->schema, $schema ); } /** * @inheritDoc */ public function getSql() { return $this->schema->toSql( $this->platform ); } }