Created
August 26, 2015 13:17
-
-
Save tygern/7574ebf8b441c65f7a5a to your computer and use it in GitHub Desktop.
Non Sequential ID Generation - create table
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 users | |
| ( | |
| id BIGINT NOT NULL DEFAULT fetch_id('id_seq'), | |
| email VARCHAR | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment