public function testGetCreateTableSQLFromNotAnnotatedEntity()
 {
     $sql = $this->notAnnotatedTableData->getCreateTableSQL();
     $this->assertEqualsFixture($sql, __FUNCTION__);
     $this->runQuery($sql);
 }
Example #2
0
 public function createTable()
 {
     $this->runQuery($this->table->getCreateTableSQL());
 }