Created
February 1, 2014 22:41
-
-
Save alexanderfefelov/8760116 to your computer and use it in GitHub Desktop.
Play 2.2.1 Scala
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 PUBLIC.PLAY_EVOLUTIONS ( | |
ID INTEGER NOT NULL, | |
HASH VARCHAR(255) NOT NULL, | |
APPLIED_AT TIMESTAMP NOT NULL, | |
APPLY_SCRIPT CLOB, | |
REVERT_SCRIPT CLOB, | |
STATE VARCHAR(255), | |
LAST_PROBLEM CLOB, | |
CONSTRAINT CONSTRAINT_9 PRIMARY KEY (ID) | |
); | |
CREATE INDEX PRIMARY_KEY_9 ON PUBLIC.PLAY_EVOLUTIONS (ID); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment