createTable('gallery', [ 'id' => $this->primaryKey(), 'image_id' => $this->integer(), 'sort' => $this->integer(), 'status' => $this->boolean(), ]); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('gallery'); } }