Created
October 16, 2014 06:55
-
-
Save gabanox/20e30e4d2743850b226d to your computer and use it in GitHub Desktop.
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
DROP TABLE IF EXISTS CONTACT; | |
CREATE TABLE CONTACT ( | |
ID INT NOT NULL AUTO_INCREMENT | |
, FIRST_NAME VARCHAR(60) NOT NULL | |
, LAST_NAME VARCHAR(40) NOT NULL | |
, BIRTH_DATE DATE | |
, DESCRIPTION VARCHAR(2000) | |
, PHOTO BLOB | |
, VERSION INT NOT NULL DEFAULT 0 | |
, UNIQUE UQ_CONTACT_1 (FIRST_NAME, LAST_NAME) | |
, PRIMARY KEY (ID) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment