for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use roaresearch\yii2\rmdb\migrations\CreatePersistentEntity;
class m170101_000001_workflow extends CreatePersistentEntity
{
/**
* @inhertidoc
*/
public function getTableName(): string
return 'workflow';
}
public function columns(): array
return [
'id' => $this->primaryKey(),
'name' => $this->string(64)->unique()->notNull(),
];