apply prettier on all files
This commit is contained in:
@@ -1,15 +1,19 @@
|
||||
'use strict';
|
||||
"use strict";
|
||||
|
||||
module.exports = {
|
||||
up: (queryInterface, Sequelize) => {
|
||||
return queryInterface.sequelize.query("CREATE EXTENSION postgis").then(([results, metadata]) => {
|
||||
/// No result
|
||||
})
|
||||
return queryInterface.sequelize
|
||||
.query("CREATE EXTENSION postgis")
|
||||
.then(([results, metadata]) => {
|
||||
/// No result
|
||||
});
|
||||
},
|
||||
|
||||
down: (queryInterface, Sequelize) => {
|
||||
return queryInterface.sequelize.query("DROP EXTENSION IF EXISTS postgis").then(([results, metadata]) => {
|
||||
return queryInterface.sequelize
|
||||
.query("DROP EXTENSION IF EXISTS postgis")
|
||||
.then(([results, metadata]) => {
|
||||
/// No result
|
||||
})
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user