Files
yii2/tests/data/console/migrate_create/create_test.php
2016-11-08 23:39:44 +03:00

33 lines
428 B
PHP

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