First cut of a script to scrap the average customer ratings for books from
[koha.git] / misc / amazonratings / ratings.sql
1 -- MySQL dump 8.21
2 --
3 -- Host: localhost    Database: Koha2
4 ---------------------------------------------------------
5 -- Server version       3.23.49-log
6
7 --
8 -- Table structure for table 'ratings'
9 --
10
11 CREATE TABLE ratings (
12   biblioitemnumber int(11) NOT NULL default '0',
13   biblionumber int(11) default NULL,
14   rating varchar(10) default NULL,
15   modified timestamp(14) NOT NULL,
16   PRIMARY KEY  (biblioitemnumber)
17 ) TYPE=MyISAM;
18