DEV Community

Discussion on: How to automate attendance record with face recognition, Python and React

Collapse
 
jamiayahyamadni profile image
jamia yahya madni

Someone Send me the Db schema ?

Collapse
 
allandosdiabos profile image
Allan dos Demônios

CREATE TABLE users (
id serial PRIMARY KEY,
name VARCHAR ( 100 ) UNIQUE,
arrival_picture VARCHAR ( 255 ),
date TIMESTAMP,
arrival_time TIME,
departure_time TIME,
departure_picture VARCHAR ( 255 )
);