Also I would like to someway make the existing link to have 0 entered. something equivalent to UPDATE LINKS SET RATING = 0, VOTES = 0 WHERE RATING = ""
Adding Column... ALTER TABLE LINKS ADD COLUMN RATING int NOT NULL DEFAULT 0 Column added successfully Populating Current Records with new Default value UPDATE LINKS SET RATING=0 Table(s) updated
Adding Column... ALTER TABLE LINKS ADD COLUMN VOTES int NOT NULL DEFAULT 0 Column added successfully Populating Current Records with new Default value UPDATE LINKS SET VOTES=0 Table(s) updated
yes I did, since adding a new column does not always populate with a default un less you set the column to NOT NULL, then it populates automatically.
I am about to stick a post in DEv team forum, asking all MOD writers to send me there dbs files, so I can make sure they are all compatible with the latest version. I will repost the instructions, but you can see them here www.magicmushroom.org.uk there should be a link in the top 5 links list