for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use roaresearch\yii2\rmdb\migrations\CreatePersistentEntity;
class m171130_000002_credit extends CreatePersistentEntity
{
public function getTableName(): string
return 'credit';
}
public function columns(): array
return [
'id' => $this->primaryKey(),
'workflow_id' => $this->normalKey(),
];
public function foreignKeys(): array
'workflow_id' => ['table' => 'workflow']