Skip to content

Instantly share code, notes, and snippets.

@alexandramartinez
Created July 28, 2025 11:37
Show Gist options
  • Select an option

  • Save alexandramartinez/1531f62f4fdab02056c74d8df7963d03 to your computer and use it in GitHub Desktop.

Select an option

Save alexandramartinez/1531f62f4fdab02056c74d8df7963d03 to your computer and use it in GitHub Desktop.
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