createTable('{{%banner}}', [ 'id' => $this->primaryKey(), 'photo' => $this->string(), 'rating' => $this->integer(), ]); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('{{%banner}}'); } }