Skip to content

Commit 1673851

Browse files
committed
after eslint check
1 parent e66441f commit 1673851

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

models/infra.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import connector from "#models/databaseUtil";
22

33
const infrastructureSchema = {
4-
infraID: {type: Number, required: true},
5-
infraName: {type: String, required: true},
6-
infraType: {type: String, required: true},
7-
infraWing: {type: String, required: true},
8-
floor: {type: Number, required: true},
9-
capacity: {type:Number, required: true}
4+
infraID: { type: Number, required: true },
5+
infraName: { type: String, required: true },
6+
infraType: { type: String, required: true },
7+
infraWing: { type: String, required: true },
8+
floor: { type: Number, required: true },
9+
capacity: { type: Number, required: true },
1010
};
1111

1212
const infrastructureModel = new connector.model("Infrastructure", infrastructureSchema);

0 commit comments

Comments
 (0)