不要怂,就是干,撸起袖子干!

You need to sign in or sign up before continuing.
20130909175000-deleteFunctionGetTheAnswer.js 299 Bytes
module.exports = {
  up: function(migration, DataTypes, done) {
    migration.dropFunction('get_the_answer', []).complete(done);
  },
  down: function(migration, DataTypes, done) {
    migration.createFunction('get_the_answer', 'int', 'plpgsql',
            'RETURN 42;'
    ).complete(done);
  }
}