Files
yii2/tests/data/console/migrate_create/create_id_pk.php
2026-01-27 05:53:03 -03:00

42 lines
743 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 creation of table `{{%{table}}}`.
*/
class {$class} extends Migration
{
/**
* {@inheritdoc}
*/
public function safeUp()
{
\$this->createTable('{{%{table}}}', [
'id' => \$this->primaryKey(),
'address' => \$this->string(),
'address2' => \$this->string(),
'email' => \$this->string(),
]);
}
/**
* {@inheritdoc}
*/
public function safeDown()
{
\$this->dropTable('{{%{table}}}');
}
}
CODE;