Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
sre_zzzzsys_php_id column length Topic is solved
-
- Posts: 72
- Joined: Mon Jun 10, 2019 5:00 pm
- Has thanked: 6 times
- Been thanked: 4 times
sre_zzzzsys_php_id column length
Just a heads up I tried to create a fast report from a table with a little bit longer name "Current_Days_Recurring_Billing". The sre_zzzzsys_php_id column in the zzzzsys_report table is varchar(25) and will not fit TABLE:Current_Days_Recurring_Billing but it states that it created the fast report in the standard big yellow box. The report is of course nowhere to be found. Looking at the Debug log error it shows the column was too long and the insert query failed. I managed to get around it by renaming my table to "CurDaysRecBilling".
-
- nuBuilder Team
- Posts: 4297
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 times
- Contact:
Re: sre_zzzzsys_php_id column length
Hi,
Thank you for pointing this out. You may want to change the column length to varchar(200).
(This will also be changed in a future Github commit)
Thank you for pointing this out. You may want to change the column length to varchar(200).
Code: Select all
ALTER TABLE `zzzzsys_report` CHANGE `sre_zzzzsys_php_id` `sre_zzzzsys_php_id` VARCHAR(200) NULL DEFAULT NULL;
-
- Posts: 72
- Joined: Mon Jun 10, 2019 5:00 pm
- Has thanked: 6 times
- Been thanked: 4 times