mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-07 15:57:35 +01:00
33 lines
446 B
PHP
33 lines
446 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}', [
|
|
'brand_id' => \$this->primaryKey()->unsigned(),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function down()
|
|
{
|
|
\$this->dropTable('{table}');
|
|
}
|
|
}
|
|
|
|
CODE;
|