First of all, I do not know which version of AWS you are running, but it looks as if your warning_types table is missing some columns. Add them using the following queries:
ALTER TABLE `warning_types` ADD COLUMN `warn_alert` char(3)
ALTER TABLE `warning_types` ADD COLUMN `warn_alertcomment` mediumtext
Remember to add any prefix you might be using in front of the table name.
|