Thread: 0.5.x DB needed
View Single Post
  #4  
Old 05-05-2008, 07:31 PM
BatCountry
Fire Beetle
 
Join Date: Mar 2006
Posts: 24
Default

It would be quite a bit of work, but you could simply import the, say, kunark peq db and then manually drop the columns which don't exist in the empty 0.5.x db you've acquired.

Code:
alter table TABLE_NAME drop COLUMN_1, drop COLUMN_2... , drop COLUMN_X;
...for every extra column.
Reply With Quote