Exemple #1
0
 /**
  * Creates the specified database table.
  *
  * @param Table $table Table
  * @return void
  */
 public function createTable(Table $table)
 {
     $this->adapter->createTable($table);
 }
 /**
  * Creates the specified database table.
  *
  * @param TableMigrationInterface $table TableMigrationInterface
  *
  * @return TableMigrationInterface
  */
 public function createTable(TableMigrationInterface $table)
 {
     $this->adapter->createTable($table);
     return $this;
 }