We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ad6cf2 commit 5a2c157Copy full SHA for 5a2c157
lib/migration.js
@@ -131,18 +131,6 @@ function mixinMigration(PostgreSQL) {
131
return sql;
132
};
133
134
- PostgreSQL.prototype.searchForPropertyInActual = function(model, propName, actualFields) {
135
- var self = this;
136
- var found = false;
137
- actualFields.forEach(function(f) {
138
- if (f.column === self.column(model, propName)) {
139
- found = f;
140
- return;
141
- }
142
- });
143
- return found;
144
- };
145
-
146
PostgreSQL.prototype.getPropertiesToModify = function(model, actualFields) {
147
var self = this;
148
var sql = [];
0 commit comments