Created
April 24, 2018 13:22
-
-
Save denispeyrusaubes/3ff9256db4672a515d6b2f42e2b472a8 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
--DROP TABLE runners IF EXISTS; | |
CREATE TABLE runners ( | |
id INTEGER PRIMARY KEY, | |
name VARCHAR(30), | |
email VARCHAR(50), | |
); | |
CREATE TABLE splits ( | |
id INTEGER PRIMARY KEY, | |
name VARCHAR(30), | |
email VARCHAR(50), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment