Skip to content
Snippets Groups Projects

Buy with email

Merged LeeYongJae requested to merge buy_with_email into master
11 files
+ 274
86
Compare changes
  • Side-by-side
  • Inline
Files
11
@@ -4,9 +4,10 @@ var autoInc = require("mongoose-auto-increment");
const TransactionSchema = new Schema({
_id: Number,
buyerid: { type: String },
sellerid: { type: String },
ontransaction: { type: Boolean }
bookTitle: { type: String },
buyerId: { type: String },
sellerId: { type: String },
on_transaction: { type: Boolean }
});
autoInc.initialize(mongoose.connection);
Loading