change accesses table access column to text type
This commit is contained in:
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
use yii\db\Migration;
|
||||
|
||||
/**
|
||||
* Class m191206_100300_accesses_table_access_field_to_text_type
|
||||
*/
|
||||
class m191206_100300_accesses_table_access_field_to_text_type extends Migration
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function safeUp()
|
||||
{
|
||||
$this->alterColumn('accesses', 'access', 'text');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user