Files
yii2/tests/data/console/migrate_create/drop_fields.php
Nikola Kovacs 84124bec4f Fix grammar in migration template docblocks. (#12148)
Fix typo in test file's name.
2016-08-12 17:55:43 +03:00

35 lines
512 B
PHP

<?php
return <<<CODE
<?php
use yii\db\Migration;
/**
* Handles the dropping of table `test`.
*/
class {$class} extends Migration
{
/**
* @inheritdoc
*/
public function up()
{
\$this->dropTable('test');
}
/**
* @inheritdoc
*/
public function down()
{
\$this->createTable('test', [
'id' => \$this->primaryKey(),
'body' => \$this->text()->notNull(),
'price' => \$this->money(11,2),
]);
}
}
CODE;