-- phpMyAdmin SQL Dump -- version 2.11.7.1 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Oct 25, 2009 at 06:35 PM -- Server version: 5.0.41 -- PHP Version: 5.2.6 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; -- -- Database: `migrate` -- -- -------------------------------------------------------- -- -- Table structure for table `legacy_products` -- CREATE TABLE `legacy_products` ( `sku` varchar(8) NOT NULL, `name` varchar(255) NOT NULL, `description` text NOT NULL, `price` float NOT NULL, `internal_flag` int(11) NOT NULL, PRIMARY KEY (`sku`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `legacy_products` -- INSERT INTO `legacy_products` VALUES('BAN001X2', 'Banana bread', 'Delicious banana bread. Mmmm. Bananas...', 9.99, 1); INSERT INTO `legacy_products` VALUES('PLU124D0', 'Plunger', 'For plunging things.', 10.49, 7); INSERT INTO `legacy_products` VALUES('KIT823Q1', 'Kitty litter', 'The kitties just love it!', 25, 9); INSERT INTO `legacy_products` VALUES('TRO593W2', 'Trophy', 'A trophy to make you feel good about yourself.', 45.78, 3);