createTable('{{%test_task}}', [ 'id' => $this->primaryKey(), 'description' => $this->string(500), 'link' => $this->string(255), 'level' => $this->integer(1)->defaultValue(1), 'status' => $this->integer(1), ]); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('{{%test_task}}'); } }