Created
April 18, 2019 14:27
-
-
Save recursivecodes/467b7f64363bbadd18bb510c49934cb0 to your computer and use it in GitHub Desktop.
This file contains 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 NUMBER GENERATED BY DEFAULT ON NULL AS IDENTITY, | |
version NUMBER(20) NOT NULL, | |
first_name VARCHAR2(50) NOT NULL, | |
last_name VARCHAR2(50) NULL, | |
is_cool NUMBER(1,0) NOT NULL | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment