Created
January 23, 2018 16:33
-
-
Save kljensen/2d4a3a48ba25788ec947625069be2529 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 person ( | |
id INTEGER PRIMARY KEY, | |
name TEXT, | |
email TEXT, | |
username TEXT | |
); | |
CREATE TABLE task ( | |
id INTEGER PRIMARY KEY, | |
title TEXT, | |
owner_id INT, | |
FOREIGN KEY owner_id REFERENCES person(id) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment