/** * @inheritdoc */ public function init() { if ($this->db === null) { $this->db = new Connection(['dsn' => 'sqlite:' . Yii::getAlias($this->dbFile)]); } parent::init(); if ($this->autoCreateTable && !$this->db->getTableSchema($this->cacheTable)) { $this->createTableCache(); } }
/** * @inheritdoc */ public function init() { parent::init(); $this->createTable(); }