Created
January 22, 2014 00:22
-
-
Save RoxasShadow/8551260 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
| ALTER TABLE episodes ALTER editing SET DEFAULT null; | |
| ALTER TABLE episodes | |
| ALTER editing TYPE smallint | |
| USING | |
| CASE | |
| WHEN editing THEN 2 else 1 | |
| END; | |
| ALTER TABLE episodes ALTER editing SET DEFAULT 1; | |
| COMMIT; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment