createTable('support', [ 'id' => $this->primaryKey(), 'book_id' => $this->integer(), 'name' => $this->string(), 'email' => $this->string(), 'sum' => $this->integer(), 'status' => $this->integer() ]); $this->addForeignKey('support_book_fk', 'support', 'book_id', 'book', 'id', 'CASCADE', 'CASCADE'); } /** * {@inheritdoc} */ public function safeDown() { $this->dropForeignKey('support_book_fk', 'support'); $this->dropTable('support'); } }