Installing the MSRP Display Mod, the first step is as follows:

1. Add a new field to the products table to hold the MSRP value.

ALTER TABLE products ADD `products_msrp` DECIMAL( 15, 4 ) NOT NULL AFTER `products_price` ;


First, I can't find the field products_price in the database list to add the new products_msrp field after it.

Second, I can't seem to add the new products_msrp field anywhere.

Any ideas what I'm doing wrong ?

Thanks for any help,
Bob