public function testCreateTables()
 {
     $book = new BookModel(null, array('name' => 'Moinruich', 'isbn' => 'Iäsbe-ähn'));
     echo "<pre>";
     var_dump($book->getData());
     $book->update();
     var_dump($book->getData());
     return 'Created Table Only_table and with_arguments';
 }