Skip to content

Instantly share code, notes, and snippets.

@sarful
Created May 30, 2020 12:11
Show Gist options
  • Save sarful/ac24554b9e07e4d06c05c23c3f71d222 to your computer and use it in GitHub Desktop.
Save sarful/ac24554b9e07e4d06c05c23c3f71d222 to your computer and use it in GitHub Desktop.
create table attendance(
id INT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE,
user_id INT UNSIGNED NOT NULL,
clock_in TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY ( id )
);
create table users(
id INT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE,
rfid_uid VARCHAR(255) NOT NULL,
name VARCHAR(255) NOT NULL,
created TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY ( id )
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment