create table paper_type
(  	paper_typerid int unsigned not null auto_increment primary key,
	name char(50) not null
);

create table quantity
(	quantityid int unsigned not null auto_increment primary key,
	name char(50) not null
);

create table printing
(	printingid int unsigned not null auto_increment primary key,
	name char(50) not null
);

create table trunaround
(
	turnaroundid int unsigned not null auto_increment primary key,
	name char(50) not null
);

create table proof
(
	proofid int unsigned not null auto_increment primary key,
	name char(50) not null
);

create table front_finish
(
	front_finishid int unsigned not null auto_increment primary key,
	name char(50) not null
);

create table back_finish
(
	back_finishid int unsigned not null auto_increment primary key,
	name char(50) not null
);

create table rounded_corners
(
	rounded_cornersid int unsigned not null auto_increment primary key,
	name char(50) not null
);

create table shrink_wrapping
(
	shrink_wrappingid int unsigned not null auto_increment primary key,
	name char(50) not null
);

