commit ae429f2409ff99314f507a2048d36e343025cf36
parent 03033c6f6aed318f9005e1309759d0a1e2ce7cb0
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Fri, 24 Oct 2014 00:51:07 -0600
product_scraper: add comments about column names
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/product_scraper.pl b/product_scraper.pl
@@ -19,7 +19,9 @@ srand;
 
 $dbh->do("create table if not exists products(" .
 	"part_num text not null primary key, " .
+	# this should be manufacturer
 	"brand text, " .
+	# this should be description
 	"title text, " .
 	"type text, " .
 	"first_seen int, " .