Created
July 16, 2010 17:28
-
-
Save mhayes/478650 to your computer and use it in GitHub Desktop.
ColdFusion migrations idea
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
<!--- | |
Database Migration Script: | |
Instructions here | |
---> | |
<cfsavecontent variable="up"> | |
<!--- The contents in this section will be used to apply your update ---> | |
CREATE VIEW [ats].[VW_R_T1] | |
AS | |
SELECT TOP 3 * FROM ats.vw_r | |
</cfsavecontent> | |
<cfsavecontent variable="down"> | |
<!--- The contents in this section will be used to undo your update ---> | |
DROP VIEW ats.vw_r_t1 | |
</cfsavecontent> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment