Files
Klimov Paul 71c541773f PHPDoc fix
2018-01-23 13:17:25 +02:00

38 lines
585 B
PHP

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
return <<<CODE
<?php
use yii\db\Migration;
/**
* Handles the dropping of table `{table}`.
*/
class {$class} extends Migration
{
/**
* {@inheritdoc}
*/
public function safeUp()
{
\$this->dropTable('{table}');
}
/**
* {@inheritdoc}
*/
public function safeDown()
{
\$this->createTable('{table}', [
'id' => \$this->primaryKey(),
]);
}
}
CODE;