Files
2022-08-03 12:32:18 +03:00

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;