Skip to content

Instantly share code, notes, and snippets.

@kljensen
Created January 23, 2018 16:33
Show Gist options
  • Save kljensen/2d4a3a48ba25788ec947625069be2529 to your computer and use it in GitHub Desktop.
Save kljensen/2d4a3a48ba25788ec947625069be2529 to your computer and use it in GitHub Desktop.
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