Skip to content

Instantly share code, notes, and snippets.

@kasramp
Created May 1, 2020 22:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kasramp/c67a401d9f26792ed349329ddcc683bc to your computer and use it in GitHub Desktop.
Save kasramp/c67a401d9f26792ed349329ddcc683bc to your computer and use it in GitHub Desktop.
CREATE TABLE IF NOT EXISTS users (
id INTEGER AUTO_INCREMENT PRIMARY KEY,
first_name VARCHAR(512) NOT NULL,
last_name VARCHAR(512) NOT NULL,
age INTEGER NOT NULL
) engine=InnoDB;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment