Yea Im getting the same thing, no 298 line nor the upper numbers. and Im also getting this error when I do this code
ALTER TABLE `DATABASENAME`.`ost_ticket` ADD COLUMN `agency` INTEGER
UNSIGNED NOT NULL DEFAULT 0 AFTER `updated`;
#1146 - Table 'DATABASENAME.ost_ticket' doesn't exist
Please Help.
hello, I hope to help, if I could add the field down successfully, look in the section that says DATABASENAME, you should change that, you have to put the name of your database, for example my database called osticket and table to modify is called ost_ticket and execution would be the siquiente:
ALTER TABLE `osticket`. `ost_ticket` ADD COLUMN `agency` INTEGER
UNSIGNED NOT NULL DEFAULT 0 AFTER `updated`;
I hope help you.