estatesfunding/ef-api/models/property.js

35 lines
813 B
JavaScript
Raw Normal View History

2024-09-12 08:11:07 +00:00
import mongoose from "mongoose";
const propertySchema = mongoose.Schema({
propertyType: {type: String, required: true },
title: {type: String, required: true },
yearBuild: {type: String, required: true },
totalSqft: {type: String, required: true },
2024-09-16 05:54:57 +00:00
userfirstname: String,
usermiddlename: String,
userlastname: String,
usertitle: String,
2024-09-16 05:00:05 +00:00
creator: String,
2024-09-16 05:54:57 +00:00
useremail: String,
2024-09-16 05:00:05 +00:00
propertyId: String,
2024-09-16 05:54:57 +00:00
userId:String,
2024-09-16 05:00:05 +00:00
createdAt: {
type: Date,
default: new Date(),
},
publishedAt: {
type: Date,
default: new Date(),
},
currentYear: {
type: Number,
default: new Date().getFullYear(),
},
2024-09-15 08:11:03 +00:00
2024-09-12 08:11:07 +00:00
});
const PropertyModal = mongoose.model("property", propertySchema);
export default PropertyModal;