table = 'log_api'.'_'.$date; $exist = Db::query('show tables like "'.$this->table.'"'); if(empty($exist)){ $sql = "CREATE TABLE IF NOT EXISTS {$this->table} LIKE log_api"; Db::execute($sql); } parent::__construct(); } }