use yii\db\Migration; /** * Handles the creation and droping for table `` in the database. */ class extends Migration { /** * @inheritdoc */ public function up() { $this->createTable('', [ '' => $this-> '' => $this-> ]); } /** * @inheritdoc */ public function down() { $this->dropTable(''); } }