mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-16 15:21:13 +08:00
40 lines
707 B
PHP
40 lines
707 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(),
|
|
'body' => \$this->text()->notNull(),
|
|
'price' => \$this->money(11,2),
|
|
]);
|
|
}
|
|
}
|
|
|
|
CODE;
|