mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-03 22:14:36 +01:00
39 lines
615 B
PHP
39 lines
615 B
PHP
<?php
|
|
|
|
/**
|
|
* @link https://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license https://www.yiiframework.com/license/
|
|
*/
|
|
|
|
return <<<CODE
|
|
<?php
|
|
|
|
{$namespace}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;
|