Created
April 18, 2019 14:27
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