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:
parent
7a51e1bd4c
commit
b77112d948
@ -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', []);
|
|
||||||
};
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user