Files
yii2/tests/data/console/migrate_create/add_columns_test.php
Klimov Paul 71c541773f PHPDoc fix
2018-01-23 13:17:25 +02:00

42 lines
952 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 adding columns to table `{table}`.
*/
class {$class} extends Migration
{
/**
* {@inheritdoc}
*/
public function safeUp()
{
\$this->addColumn('{table}', 'title', \$this->string(10)->notNull());
\$this->addColumn('{table}', 'body', \$this->text()->notNull());
\$this->addColumn('{table}', 'price', \$this->money(11,2)->notNull());
\$this->addColumn('{table}', 'created_at', \$this->dateTime());
}
/**
* {@inheritdoc}
*/
public function safeDown()
{
\$this->dropColumn('{table}', 'title');
\$this->dropColumn('{table}', 'body');
\$this->dropColumn('{table}', 'price');
\$this->dropColumn('{table}', 'created_at');
}
}
CODE;