CREATE TABLE IF NOT EXISTS bmi_records ( id INT AUTO_INCREMENT PRIMARY KEY, user_id INT NOT NULL, weight FLOAT NOT NULL, height FLOAT NOT NULL, bmi FLOAT NOT NULL, status VARCHAR(50), interpretation VARCHAR(100), timestamp TIME, created_at DATE ); CREATE TABLE IF NOT EXISTS users ( id INT AUTO_INCREMENT PRIMARY KEY, username VARCHAR(50) NOT NULL UNIQUE, password VARCHAR(255) NOT NULL, rol VARCHAR(20) DEFAULT 'user' );
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.