Created
May 31, 2018 14:56
-
-
Save irshadhasmat/c5d8e717e3d0f839eaa7044058a7728f to your computer and use it in GitHub Desktop.
Create Table Employee
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 "tbl_employee" ( | |
"employee_id" SERIAL, | |
"full_name" STRING(100), | |
"department" STRING(50), | |
"designation" STRING(50), | |
"created_at" TIMESTAMPTZ, | |
"updated_at" TIMESTAMPTZ, | |
PRIMARY KEY ("employee_id") | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment