Created
July 25, 2013 20:00
-
-
Save jeremyjarrell/6083207 to your computer and use it in GitHub Desktop.
A Groovy task that prefixes new SQL migration files with a timestamp precise to milliseconds. The following usage will add a prefix to any SQL file in a hardcoded directory that does not begin with an number and double leading underscore: $ gradle prefixNewMigrations
This file contains 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
task prefixNewMigrations { | |
fileTree(dir: 'dev/src/db/listhub').exclude({ isFilePrefixed(it.file) }).each { file -> | |
doLast { | |
def timestamp = new Date().format('yyyyMMddHHmmssSSS', TimeZone.getTimeZone('GMT')) | |
println "Renaming $file.name to ${timestamp}__$file.name" | |
file.renameTo("$file.parentFile.absolutePath$file.separator${timestamp}__$file.name") | |
// Sleep for a moment to avoid prefix conflicts when renaming multiple files | |
sleep(1*1000) | |
} | |
} | |
} | |
def isFilePrefixed(file) { | |
return (file.name ==~ '^\\d+__.*\\.sql\$') | |
} |
Thanks for sharing!
Here is a version for SBT
https://gist.github.com/denisovlev/6449672ea1de8d50fc4f7312a875c760
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for sharing this!
I had to do something similar, but I had to plug it into a maven build, so I could only use pure Groovy. You can find this Gist here: https://gist.github.com/SlevinBE/7233913