1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

Remove unused file

This commit is contained in:
Jari Bakken 2014-10-21 12:02:55 +02:00 committed by Ivar Conradi Østhus
parent 7a51e1bd4c
commit b77112d948

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', []);
};