objecttothis
objecttothis
That's the one I just added a check for. Which migration script does it fail on?
> > Hmmm. I'm using MySQL 8. I'm not sure why MySQL 8 can't handle a check to see if the constraint exists. Probably a good way forward is to...
@Nsowah please submit one feature request per issue. Grouping your feature requests will likely cause one or more to not be seen and I don't think you want that.
I think in the current PR we should replicate the functionally of 3.3.9 and assign changes to the 3.4.1 or later milestone. I think it's reasonable to give the employee...
@madskristensen any plans to port this extension to VS2022?
@jekkos I suspect when you bumped dependencies to get jspdf and other stuff working it may have had this effect. Do you want to investigate this? If not, that's OK,...
Here is one of the PR's https://github.com/opensourcepos/opensourcepos/pull/3981/files
In order to get the expected output (minus the missing JOIN) I have to change the code to this: ```php $db_prefix = $this->db->getPrefix(); $builder = $this->db->table('attribute_links'); $builder->join('attribute_values', 'attribute_values.attribute_id = attribute_links.attribute_id',...
> I don't think Query Builder supports such complicated queries. https://codeigniter4.github.io/CodeIgniter4/database/query_builder.html#builder-set Can you clarify what you mean by complicated in this query? I understand the `JOIN` is not supported in...
OK, here is a simpler example. This code: ``` $builder = $this->db->table('sales'); $builder->select('AVG(sales_items.discount)'); $selectQuery = $builder->getCompiledSelect(); ``` Produces ``` SELECT AVG(sales_items.discount) FROM `ospos_sales` ``` Surely this isn't too complicated and...