Skip to content

Instantly share code, notes, and snippets.

@MikeRogers0
Created January 21, 2013 19:52
Show Gist options
  • Save MikeRogers0/4588747 to your computer and use it in GitHub Desktop.
Save MikeRogers0/4588747 to your computer and use it in GitHub Desktop.
$query = '
CREATE TABLE products (
product_id int not null auto_increment PRIMARY KEY,
product_name varchar(100),
description varchar(200),
photo_url varchar(100),
price decimal(4,2),
stock_level decimal(3,0)
);
';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment