View Single Post
  #26  
Old 14th July 2013, 07:20
nirbe nirbe is offline
Senior Member
 
Join Date: Oct 2012
Israel
Posts: 39
Default
Quote:
Originally Posted by firefly007 View Post
You need to run the query... (alter Table)

Go to Phpmyadmin => The database in question => Then click on SQL button

Then Paste this in below:

ALTER TABLE `snatched` ADD `hit_and_run` INT(11) NOT NULL;
ALTER TABLE `snatched` ADD `mark_of_cain` enum('yes','no') NOT NULL DEFAULT 'no';
ALTER TABLE snatched ADD `finished` enum('yes','no') NOT NULL DEFAULT 'no';
ALTER TABLE `users` ADD `hnrwarn` enum('yes','no') NOT NULL DEFAULT 'no';
ALTER TABLE `users` ADD `hit_and_run_total` INT(9) DEFAULT '0';

Then hit the "GO"
I know that, but how can i run AFTER TABLE if the table doesn't exist?
Reply With Quote