Skip to content

Website built with HTML, CSS, Javascript, Nodejs, ExpressJs, EJS, PostgresSQL

Notifications You must be signed in to change notification settings

nickyaara/GREATVALUE

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

// code to create products table in postgresSQL

CREATE TABLE products (
id SERIAL PRIMARY KEY,
	p_name VARCHAR(150),
	in_stock INT,
	rating INT,
	selling_price INT,
	mrp INT,
	feature TEXT[],
	color VARCHAR(10),
	material VARCHAR(30),
	dimension INT[],
	weight_limit INT,
	suitable_for TEXT[],
	wheels INT,
	item_weight INT,
	category TEXT[],
	assembly_required VARCHAR(4),
	brand VARCHAR(50),
	model_number TEXT,
	warranty TEXT,
	in_box TEXT[],
	description TEXT[],
	power_required VARCHAR(4),
	images bytea[]
);

**//

About

Website built with HTML, CSS, Javascript, Nodejs, ExpressJs, EJS, PostgresSQL

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published