Last active
August 13, 2018 06:12
-
-
Save ecthiender/0fd7df0207967b2f3bb3cb627790f8e4 to your computer and use it in GitHub Desktop.
Sample schema for update mutations
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 author ( | |
id INTEGER PRIMARY KEY, | |
name TEXT | |
); | |
CREATE TABLE article ( | |
id INTEGER PRIMARY KEY, | |
title TEXT, | |
content TEXT, | |
author_id INTEGER, | |
is_published BOOLEAN DEFAULT FALSE, | |
published_on TIMESTAMP DEFAULT NOW(), | |
likes INTEGER DEFAULT 0, | |
CONSTRAINT author_id_fkey FOREIGN KEY (author_id) | |
REFERENCES author (id) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment