createTable('author', [ 'id' => $this->primaryKey(), ]); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('author'); } }