Created
July 28, 2025 11:37
-
-
Save alexandramartinez/1531f62f4fdab02056c74d8df7963d03 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE tasks( | |
| id int NOT NULL PRIMARY KEY AUTO_INCREMENT, | |
| title VARCHAR(255) NOT NULL, | |
| description VARCHAR(255), | |
| dueDate VARCHAR(255), | |
| completed BOOLEAN NOT NULL | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment