SimpleInvoices Group Forum › Forums › Fearless359 SimpleInvoices Discussion Group › Update SI from an old version › Reply To: Update SI from an old version
November 9, 2023 at 9:00 am
#2018
fearless359
Keymaster
In the schema you attached, the following is the id settings in si_invoice_items:
CREATE TABLE si_invoice_items ( id int(10) NOT NULL AUTO_INCREMENT,
It should be:
CREATE TABLE si_invoice_items ( id int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
If the table is set correctly, then the update process should complete as it did once I made the change. Note, you can change the field setting manually in phpMyAdmin by selecting the Change option on the id column under the Structure tab when si_invoice_items is selected.
- This reply was modified 1 year ago by fearless359.
Recent Comments