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

36 lines
556 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(),
'address' => \$this->string(),
'address2' => \$this->string(),
'email' => \$this->string(),
]);
}
/**
* @inheritdoc
*/
public function down()
{
\$this->dropTable('{table}');
}
}
CODE;