apply prettier on all files
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
'use strict';
|
||||
"use strict";
|
||||
module.exports = {
|
||||
up: (queryInterface, Sequelize) => {
|
||||
return queryInterface.createTable('RealEstateRequests', {
|
||||
return queryInterface.createTable("RealEstateRequests", {
|
||||
id: {
|
||||
allowNull: false,
|
||||
autoIncrement: true,
|
||||
@@ -28,6 +28,6 @@ module.exports = {
|
||||
});
|
||||
},
|
||||
down: (queryInterface, Sequelize) => {
|
||||
return queryInterface.dropTable('RealEstateRequests');
|
||||
return queryInterface.dropTable("RealEstateRequests");
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user