Code style fixes
This commit is contained in:
parent
041f8090b0
commit
4b49c95b20
8 changed files with 121 additions and 121 deletions
|
|
@ -14,15 +14,15 @@ class AddUserProviders extends AbstractMigration
|
|||
$this
|
||||
->table('user')
|
||||
// The provider name
|
||||
->addColumn('provider_key', 'string', array(
|
||||
->addColumn('provider_key', 'string', [
|
||||
'default' => 'internal',
|
||||
'limit' => MysqlAdapter::TEXT_SMALL
|
||||
))
|
||||
'limit' => MysqlAdapter::TEXT_SMALL
|
||||
])
|
||||
// A data used by the provider
|
||||
->addColumn('provider_data', 'string', array(
|
||||
'null' => true,
|
||||
->addColumn('provider_data', 'string', [
|
||||
'null' => true,
|
||||
'limit' => MysqlAdapter::TEXT_SMALL
|
||||
))
|
||||
])
|
||||
->save();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue