package
0.0.0-20240625185110-2727207ea52a
Repository: https://github.com/sumanmukherjee03/practice-and-katas.git
Documentation: pkg.go.dev

# README

Database setup steps

mysql commands to create the users table

CREATE TABLE users (id INT AUTO_INCREMENT PRIMARY KEY, first_name VARCHAR(45), last_name VARCHAR(45), email VARCHAR(45) NOT NULL, date_created DATETIME NOT NULL, status VARCHAR(45) NOT NULL, password VARCHAR(32) NOT NULL, UNIQUE INDEX email_unique (email ASC));

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author