guild/console/migrations/m191021_085640_create_accesses_table.php

30 lines
534 B
PHP
Raw Normal View History

2019-10-22 18:03:40 +03:00
<?php
use yii\db\Migration;
/**
* Handles the creation of table `{{%accesses}}`.
*/
class m191021_085640_create_accesses_table extends Migration
{
/**
* {@inheritdoc}
*/
public function safeUp()
{
$this->createTable('{{%accesses}}', [
'id' => $this->primaryKey(),
'name' => $this->string(),
'access' => $this->string(),
]);
}
/**
* {@inheritdoc}
*/
public function safeDown()
{
$this->dropTable('{{%accesses}}');
}
}