1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-28 00:06:53 +01:00

Remove unused file

This commit is contained in:
Jari Bakken 2014-10-21 12:02:55 +02:00
parent aa20e61fd9
commit 2a0e9eb0e7

View File

@ -1,30 +0,0 @@
// TEMPORARY USE OF GRUNT FOR DB MIGRATIONS
var dbUrl = process.env.DB_URL || 'postgresql://localhost:5432/unleash';
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-liquibase');
grunt.initConfig({
liquibase : {
options: {
username: '',
password: '',
url : 'jdbc:' + dbUrl,
changeLogFile: 'sql/db_changes/db.changelog-master.xml'
},
update: {
command: 'update'
},
dropAll: {
command: 'dropAll'
},
version : {
command: 'version'
}
}
});
grunt.registerTask('default', []);
};