And then I also get this once I delete those columns
Code:
Invalid SQL:
CREATE TABLE award_requests (
award_req_id int(8) unsigned NOT NULL auto_increment,
award_req_timestamp timestamp NOT NULL default CURRENT_TIMESTAMP,
award_req_uid int(8) NULL,
award_rec_uid int(8) NULL,
award_req_aid int(8) NULL,
award_req_reason varchar(512) NOT NULL,
PRIMARY KEY (award_req_id)
);
MySQL Error : Table 'award_requests' already exists
Why is it trying to recreate this table that already exists also? And I know this table was already in the previous versions of YAAS