createTable('{{%accesses}}', [ 'id' => $this->primaryKey(), 'name' => $this->string(), 'access' => $this->string(), ]); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('{{%accesses}}'); } }