Files
yii2/tests/data/console/migrate_create/create_unsigned_pk.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;