Skip to content

Instantly share code, notes, and snippets.

@gabidavila
Created February 8, 2018 21:28
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 gabidavila/d3b44697bfa73c0d40aa556f6add0a88 to your computer and use it in GitHub Desktop.
Save gabidavila/d3b44697bfa73c0d40aa556f6add0a88 to your computer and use it in GitHub Desktop.
CREATE TABLE `laps` (
`id` INT(10) NOT NULL AUTO_INCREMENT,
`athlete` VARCHAR(255) NOT NULL,
`distance` INT(10) NOT NULL,
`time` INT(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment