2025-03-06 21:54:58 +00:00
CREATE TABLE IF NOT EXISTS users (
id SERIAL PRIMARY KEY ,
name VARCHAR ( 255 ) NOT NULL ,
email VARCHAR ( 255 ) UNIQUE NOT NULL ,
password_hash TEXT NOT NULL ,
reset_token TEXT NULL ,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
) ;
2025-03-18 16:46:43 +00:00
CREATE TABLE IF NOT EXISTS categories (
id serial PRIMARY KEY ,
name VARCHAR ( 255 ) NOT NULL ,
description VARCHAR ( 255 ) NOT NULL
) ;
2025-03-06 21:54:58 +00:00
CREATE TABLE IF NOT EXISTS sneakers (
id SERIAL PRIMARY KEY ,
name VARCHAR ( 255 ) NOT NULL ,
description VARCHAR ( 255 ) NOT NULL ,
cost DECIMAL ( 10 , 2 ) NOT NULL ,
discount INTEGER NOT NULL CHECK ( discount > = 0 AND discount < = 100 ) ,
photo VARCHAR ( 255 ) NOT NULL ,
gender CHAR ( 1 ) NOT NULL CHECK ( gender IN ( ' M ' , ' F ' , ' U ' ) ) ,
2025-03-18 16:46:43 +00:00
bootSize INTEGER NOT NULL ,
categoryid INTEGER NOT NULL ,
FOREIGN KEY ( categoryid ) REFERENCES categories ( id ) ON DELETE CASCADE
2025-03-06 21:54:58 +00:00
) ;
2025-03-18 16:46:43 +00:00
INSERT INTO categories ( name , description )
VALUES ( ' tennis ' , ' for tennis ' ) ;
INSERT INTO categories ( name , description )
VALUES ( ' outdoor ' , ' for walking ' ) ;
INSERT INTO categories ( name , description )
VALUES ( ' football ' , ' for football ' ) ;
INSERT INTO sneakers ( name , description , cost , discount , photo , gender , bootSize , categoryid )
2025-03-19 09:05:42 +00:00
VALUES ( ' Adidas ' , ' fast ' , 120 . 50 , 10 , ' https://images.footlocker.com/is/image/FLEU/314312107304_01?wid=500&hei=500&fmt=png-alpha ' , ' M ' , 42 , 3 ) ;
2025-03-06 21:54:58 +00:00
2025-03-18 16:46:43 +00:00
INSERT INTO sneakers ( name , description , cost , discount , photo , gender , bootSize , categoryid )
2025-03-19 09:05:42 +00:00
VALUES ( ' Nike Air Max ' , ' Comfortable running shoes ' , 140 , 40 , ' https://static.nike.com/a/images/t_default/c4d6bfc9-f44f-467a-8e27-d9d46cfec67e/NIKE+AIR+MAX+270+GS.png ' , ' F ' , 39 , 2 ) ;
2025-03-06 21:54:58 +00:00
2025-03-18 16:46:43 +00:00
INSERT INTO sneakers ( name , description , cost , discount , photo , gender , bootSize , categoryid )
2025-03-19 09:05:42 +00:00
VALUES ( ' Puma ' , ' fast too ' , 80 . 12 , 80 , ' https://www.xxl.se/filespin/63b77c174b30493397b4c328300252ef ' , ' U ' , 41 , 1 ) ;