Created
December 16, 2016 18:11
-
-
Save aodin/e39cb4514a7bcc488390000672235d79 to your computer and use it in GitHub Desktop.
Onion SQL Schema
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 things_versioned ( | |
id integer not null, | |
name varchar not null, | |
version timestamp with time zone default now(), | |
PRIMARY KEY (id, version) | |
) | |
CREATE VIEW things AS | |
SELECT | |
DISTINCT ON (id) | |
id AS "id", | |
name AS "name", | |
version AS "updated_at" | |
FROM things_versioned | |
ORDER BY id ASC, version DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment