objecttothis
objecttothis
> I am attempting to build the project from scratch, and this particular migration fails when attempting to drop `person_id` indices. Also fails when creating primary_key for `person_id` This is...
I think standard practice is PRIMARY
@SteveIreland I know you've been working on migration scripts so I'm hesitant to dive into it. Let me know if you need any assistance/testing and what the status is on...
The database.sql script creates these primary indexes and names them `person_id`  There are two problems with that. One is that standard practice is for the primary index to be...
> So my solution drops the index if it exists and creates a pk for person_id but it does this from a new script instead. We should not edit any...
Sorry, I'm just catching up on all this. Is the existing migration script crashing on a clean database? @dch90 posted that it crashes when trying to drop the index if...
agreed on freezing old scripts as much as possible. You'll need to also remove the adding of the PK if you're removing the drop of the original PK. The solution...
@jekkos I responded to you in Element. Can you take a look when you get time?
@jekkos with bootstrap-table 1.23.1 installed and `escape` set to false in public\js\manage_tables.js, \views\Reports\tabular.php and \views\Reports\tabular_details.php, I experience the following: Entering `alert('test');` into the item name field causes the script to...
Sorry. After I realized that it was causing everything to be stripped out I didn't commit it. I thought the answer was to create a post_system event because hooks is...