for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use roaresearch\yii2\oauth2server\migrations\tables\CreateTable;
class m140501_075315_oauth_scopes extends CreateTable
{
/**
* @inheritdoc
*/
public function getTableName(): string
return 'oauth_scopes';
}
public function columns(): array
return [
'scope' => $this->primaryKey(200),
'is_default' => $this->boolean(),
];